This topic is locked

Hyperlinking

4/7/2006 5:28:22 PM
ASPRunnerPro General questions
N
npala2001 author

Hyperlink field is being displayed as another field (Called Topic) so that users can click on the topic and it will take then to another page. The problem I am having is that not all of the topics have links so when you view the list page it looks as if every topic has a hyperlink when they really don't. Is there a way I can get ASPRunner to see if there is a hyperlink or not so that the user is not having to click on every topic trying to find one that works

Sergey Kornilov admin 4/10/2006

Nick,
you can do this modifying generated include\commonfunctions.asp file.

Find this snippet there:

Function GetHyperlink(rs, str, strField, strTable)

GetHyperlink = str


and insert the following just after:

if str="" then

exit function

end if