- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
8 Posted Topics
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 :)
[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 …
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 :)
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 ;)
Use the HttpContext class - System.Web.HttpContext.Current :)
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 ?
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]
Another Alternative :) [url]http://www.ngallery.org/[/url]
The End.
InstantASP Ltd