kcwallace
Well-known member
I need to add an url to a table cell. I usually use the following, and it has never failed me until now.
Our application allows users to upload a file, and then we store the path in the database.
I have found that they store several files as the following:
myfolder/xxxLayout File_4.doc
Unfortunately, IE translates the "nbsp;" into a space, and therefore cannot find the file.
Any suggestions?
C#:
TableCell c = new TableCell();
c.Controls.Add(new LiteralControl("" + textURL + ">" + displayText + "</a>"));
Our application allows users to upload a file, and then we store the path in the database.
I have found that they store several files as the following:
myfolder/xxxLayout File_4.doc
Unfortunately, IE translates the "nbsp;" into a space, and therefore cannot find the file.
Any suggestions?