I have a field in my access DB, that is a hyperlink to an IP address.
When I display that field on my site using ASP, the link doesn't come
across.
This is displayed
162.136.133.36#http://162.136.133.36#
The code to display the field is below
response.write "<TD WIDTH=200>" & vbcrlf
response.write( rs("IP_Address" ))
response.write "</TD>" & vbcrlf
Is there a workaround? I have also tried to make the field a text field
with HTTP:// in front of the rs("IP_Address" ) and that doesn't work either.
Thanks in advance.
Doug
When I display that field on my site using ASP, the link doesn't come
across.
This is displayed
162.136.133.36#http://162.136.133.36#
The code to display the field is below
response.write "<TD WIDTH=200>" & vbcrlf
response.write( rs("IP_Address" ))
response.write "</TD>" & vbcrlf
Is there a workaround? I have also tried to make the field a text field
with HTTP:// in front of the rs("IP_Address" ) and that doesn't work either.
Thanks in advance.
Doug
Comment