Try adding another field in your database with the URL.
Then "wrap" the <a></a> (hyperlink) tags around the field you want to be a hyperlink.
e.g.
' open your database connection and get your recordset... rs
'...
<a href="http://www.yourlink.com"><%=rs.Fields("yourfieldname")%></a>
'...
|