I wrote pages in ASP/VBScript (no JS). It was working fine in IE but some of the pages had issues in Firefox. I've resolved most of the issues but can't seem to get this one.
I've pasted my code below. The doc list displays but there's no hyperlink in Firefox. I reviewed posts in this and other forums and put the full path below, but that still didn't resolve the problem in Firefox. It still works fine in IE.
response.write "<table border=1 align='center'><tr><td>Document Name</td></tr>"
while not objRec.eof
response.write "<tr><td><a href=' & objRec("docname") & "'</a>" & objRec("docname") & "</td></tr>"
objrec.movenext
wend
response.write "</table>"
Thanks!
Alexis
I've pasted my code below. The doc list displays but there's no hyperlink in Firefox. I reviewed posts in this and other forums and put the full path below, but that still didn't resolve the problem in Firefox. It still works fine in IE.
response.write "<table border=1 align='center'><tr><td>Document Name</td></tr>"
while not objRec.eof
response.write "<tr><td><a href=' & objRec("docname") & "'</a>" & objRec("docname") & "</td></tr>"
objrec.movenext
wend
response.write "</table>"
Thanks!
Alexis