• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

asp help!

fishy101

Senior member
Hi,

I have a Access database where the records in there are hyperlinks, and I am trying to make an asp page such that I can pull the each record off the database and have it be linked to whatever it is linked to in the Access database. I have tried to simply use response.write(), but did not write anything to the asp page. Anyone know of a good way to do this? Thanks in advance.

Leon
 
Download a trial copy of Drumbeat 2000 or UltraDev from Macromedia's website, then you can do it with no coding at all. Or you can check out this site http://www.aspin.com/, they have a list of forums specifically for ASP questions.
 
well, if you're working with asp, then you probably know some html.

you just call the same record again and include it into the <a> tag?
 
You can do this:

Set the record in the database to a variable

In the HTML code write: <A href=&quot;<%=variable%>&quot; target=home>text</A>. This is for if the record is just an url.

Or if the record in the database is the whole href tag, then you can just do the same but type out <%= variable %>

 
Back
Top