How can I call a Javascript procedure from ASP(vbscript), this is what I got:
I have a session variable called "linvar" that take it value from a DB, I want to call a Javascript procedure that need this value I use this:
call Nom_Proc(Session("linvar")
but It doesn't work why?
In my Nom_Proc procedure I have some statements related to the properties of layers in the page something like this:
document.layers["Layer1"].visibility='show';, etc.
Maybe I can do this procedure with VBScript but I don't know how. Pleas help me.
I have a session variable called "linvar" that take it value from a DB, I want to call a Javascript procedure that need this value I use this:
call Nom_Proc(Session("linvar")
but It doesn't work why?
In my Nom_Proc procedure I have some statements related to the properties of layers in the page something like this:
document.layers["Layer1"].visibility='show';, etc.
Maybe I can do this procedure with VBScript but I don't know how. Pleas help me.