passing parameters
Hi friends !!
Iam using ASP for server side scripting and JavaScript for creating menus etc. Now My Problem Goes like This :
I pass a parameter "temp" from file1.asp to file2.asp through link
i.e.
<a href="http://localhost/file2.asp?temp=somevalue>pass param</a>
Now I receive the temp variable in file2.asp as follows :
dim temp
temp=request.querystring("temp")
Now I want to assign the value of "temp" to a variable inside javascript in file2.asp, Iam unable to receive the value bcoz I dont know the javascript equivalent of "request.querystring" ,
please help.
Praveen
|