I have a very VERY strange bug. Im testing a website for netscape 6.
My problem:
Asp variables filled from request.form statements print all right and fine on screen for the users.
BUT! they dont show up in netscape 6 page source. That means that my dynamically generated href javascript strings dont work all right.
Asp code:
var1 = request.form("var1"
var2 = request.form("var2"
test = "var1=" & var1 & "&var2=" & var2)
response.write(test)
On screen you see:
"var1=blabla&var2=blablo"
BUT page source in netscape says:
"var1=&var2="
example end
Up until now i would have ruled out this kind of behaviuor as impossible since netscape shouldnt be able to tell where the asp script got the content it is sending from.
I dont have the problem on all the pages but one i one to many.
Any clues?
My problem:
Asp variables filled from request.form statements print all right and fine on screen for the users.
BUT! they dont show up in netscape 6 page source. That means that my dynamically generated href javascript strings dont work all right.
Asp code:
var1 = request.form("var1"
var2 = request.form("var2"
test = "var1=" & var1 & "&var2=" & var2)
response.write(test)
On screen you see:
"var1=blabla&var2=blablo"
BUT page source in netscape says:
"var1=&var2="
example end
Up until now i would have ruled out this kind of behaviuor as impossible since netscape shouldnt be able to tell where the asp script got the content it is sending from.
I dont have the problem on all the pages but one i one to many.
Any clues?