Forum: ASP.NET Mar 15th, 2005 |
| Replies: 3 Views: 3,876 |
Forum: ASP Sep 10th, 2004 |
| Replies: 5 Views: 3,397 |
Forum: ASP Sep 10th, 2004 |
| Replies: 5 Views: 3,397 Re: Please Help With Hyperlinks 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 ;) |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 4 Views: 27,929 Re: DataGrid with Images 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 :) |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 2 Views: 2,479 |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 1 Views: 1,734 Re: Need Help!!! I'm not quite sure i follow is this what your looking for ?
Dim sb As New System.Text.StringBuilder
While myDataReader.Read
sb.append("<a... |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 5 Views: 10,067 |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 2 Views: 2,481 |
Forum: ASP.NET Sep 10th, 2004 |
| Replies: 2 Views: 4,547 Re: Session_Start fires twice!! 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... |