I have an asp.net VB application that gets a filename and tries to display
it on a web page. It seems to be truncating the name when the name contains
"&" in it. Below is what I am using to grab the name. How can I get around
that? Thanks.
David
If Not Request.Cookies ("path") Is Nothing Then
strPath = Server.HtmlEnco de(Request.Cook ies("path").Val ue)
strPath = Request.Cookies ("path").Val ue
End If
it on a web page. It seems to be truncating the name when the name contains
"&" in it. Below is what I am using to grab the name. How can I get around
that? Thanks.
David
If Not Request.Cookies ("path") Is Nothing Then
strPath = Server.HtmlEnco de(Request.Cook ies("path").Val ue)
strPath = Request.Cookies ("path").Val ue
End If
Comment