Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #22.6K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

8 Posted Topics

Member Avatar for Ennio

Set the Image.ImageURL property for your image control from the database field in the itemdatabound event of the datagrid :) Sorry it's a little brief much rush :)

Member Avatar for dnanetwork
0
546
Member Avatar for JohnDarlington

[QUOTE=JohnDarlington]Hi, I have been developing in .Net for about 1 year with my current employer, and I'm really looking to broaden my horizons. Can anyone point me in the right direction?? I would appreciate advice on which jobboards, agencies or other ways you get jobs. Regards John[/QUOTE] Where you based …

Member Avatar for bluesea50
0
159
Member Avatar for DevDevil

There are a number of community startkits available at [url]http://www.asp.net/Default.aspx?tabindex=6&tabid=41[/url] These all demonstrate the basic concepts. With regards to creating PDF's a great free library exists for .NET on sourceforge :)

Member Avatar for Tekmaven
0
186
Member Avatar for rpainter

Could you not just modify... fname = fileItem.Name To read fname = "<a href=http://downloads.com/myfiles/>" & fileItem.Name & "</a> This won't work if you have sub directories ;)

Member Avatar for Lafinboy
0
196
Member Avatar for ralaing
Member Avatar for ralaing
0
100
Member Avatar for ralaing

You may wish to check the AutoEventWireUp setting. This can often cause pages to fire events twice. Try changing it from true to false or visa versa within the global.asax page directive. Does this help ?

Member Avatar for ralaing
0
333
Member Avatar for Ennio

I'm not quite sure i follow is this what your looking for ? [CODE]Dim sb As New System.Text.StringBuilder While myDataReader.Read sb.append("<a href='") sb.append(myDataReader.Item("Link")) sb.append("'>") sb.append(myDataReader.Item("Link")) sb.append("</a>") End While MyLable.Text = sb.ToString()[/CODE]

Member Avatar for InstantASP Ltd
0
72
Member Avatar for Slade
Member Avatar for InstantASP Ltd
0
148

The End.