This topic is locked

Floating Hyperlinks

9/15/2006 8:08:25 AM
ASPRunnerPro General questions
E
ebolisa author

Hi,

In the view page I'd like to add two links: 'RESERV' and 'MORE INFO' which will direct the user to some form pages.

I noticed the option 'hyperlink' but needs to be associated to a field.

Is there a way to add the above links without associating them to a table?

TIA

Emilio <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=3398&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />

J
Jane 9/15/2006

Emilio,
You can add some links to your pages with header file.

Save info about this record in the Session("value") variable in the ViewOnLoad event and then use this variable in the header.asp file.

Here is a sample code for the header.asp file:

if Session("value")="yourvalue" then

Response.write "<a href=""http://www.test.com/yourlink"">your link</a>"

end if