here is a hint:
when using hyperlinks and the database entry is not HTML compliant code, but merely a URL (like in our case):
http://www.dell.com
the following https link will not work out of the box:
https://www.dell.com
this can be resolved with a workaround coding in line 116 in the *aspfunctions.asp file:
replace:
if InStr(1,Left(str,7),"://")=0 and Left(str,7)<>"mailto:" then str = "http://"'>http://" & str
with:
if InStr(1,Left(str,9),"/")=0 and Left(str,7)<>"mailto:" then str = "http://"'>http://" & str
this is probably not perfect, but works in our environment
Matt Bronowski
BSH Home Appliances Corp.
<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=303&image=1&table=forumtopics' class='bbc_emoticon' alt=':D' />