This href works fine:
response.write "<a href=TEST.ASP?userid=1&tempid=2>Click here</a>"
Status line message is:
Shortcut to TEST.ASP?userid=1&tempid=1
But when I use variables then I do not see the parameters:
file="TEST.ASP"
userid=1
tempid=2
response.write "<a href=" & file & "?userid=" & userid & "&tempid=" & tempid & ">Click here</a>"
This one does not bring with it the parameters in the status field:
Shortcut to TEST.ASP
What's wrong?
ojf
response.write "<a href=TEST.ASP?userid=1&tempid=2>Click here</a>"
Status line message is:
Shortcut to TEST.ASP?userid=1&tempid=1
But when I use variables then I do not see the parameters:
file="TEST.ASP"
userid=1
tempid=2
response.write "<a href=" & file & "?userid=" & userid & "&tempid=" & tempid & ">Click here</a>"
This one does not bring with it the parameters in the status field:
Shortcut to TEST.ASP
What's wrong?
ojf