Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Web page URL from Table

Status
Not open for further replies.

mot98

MIS
Jan 25, 2002
647
CA
In my Access database, I am querying a table, and displaying it in a table on my ASP page. One of the fields I want to display is a URL to an HTML page.

How do I go about writing it to the table? Right now my code looks like this:

response.write &quot;<td><p><b>Web Page:</b></p></td><td>&quot; & oRSb(&quot;WebPage&quot;) & &quot;</td>&quot;


Is it possible to A HREF that?

Thanks,
mot98
[pc]

&quot;Every day I learn something new, and forget 10 things I learned long ago!&quot;
 
How about

<td>
<b>Web Page:</b>
</td>
<td>
<a href=&quot;<%=oRSb(&quot;WebPage&quot;)%>&quot;><%=oRSb(&quot;WebPage&quot;)%></a>
</td>

(in my tests it is no quicker to response.write html tags, and it's easier to read the other way) codestorm
Fire bad. Tree pretty. - Buffy
select * from population where talent > 'average'
<insert witticism here>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top