Seabelle,
It's the result.asp page that the problem is on. As the others said, you need to encode the property link.
You've probably got something like this
Code:
strLink = "<a href=""/details.asp?address=" & _
Trim(rsDetail.Fields.Item("Address").Value) & """>" & _
Trim(rsDetail.Fields.Item("Address").Value) & "</a>"
Just encode the address variable first before appending it to the link variable.
Code:
strAddress = Trim(rsDetail.Fields.Item("Address").Value)
strAddress = Server.URLEncode(strAddress)
strLink = "<a href=""/details.asp?address=" & strAddress & """>" & _
strAddress & "</a>"
I've never used Ultradev but I'd be suprised if it didn't have a setting to encode a particular field in these circumstances.
Bookmarks