Hi,
I have a Access database which stores organizations' webistes. When my asp form displays the website column it adds the search directory website instead displaying the website itself. I'm not sure if this makes sense but here is a example:
When click ,I want the page to go www.website.com. Right now is going to something like www.organization.com/search/www.website.com.
Here's me code:
Any help would be greatly appreciated and sorry for any grammer or spelling error, I'm running off of two hours of sleep. Thanks
Greg
I have a Access database which stores organizations' webistes. When my asp form displays the website column it adds the search directory website instead displaying the website itself. I'm not sure if this makes sense but here is a example:
When click ,I want the page to go www.website.com. Right now is going to something like www.organization.com/search/www.website.com.
Here's me code:
Code:
<% If Len(fp_rs("Website"))>2 then Response.Write "<a target=""_blank"" href=" &fp_rs("Website") & Chr(34) & ">" & FP_FieldVal(fp_rs,"Website") & "</a>" End If %>
Greg
Comment