VBScript and ASP
-
I have a asp page called ASP1.asp and it contains
I have included another page called ASP2.asp using in ASP2.asp I need to access the value of my HIDDEN variable, whenever I click the BUTTON, like this <% function ShowMe() Response.Write ' value of HIDEVAL end function %> or is there any way to pass the value of HIDDEN variable to the method ShowMe() Help greatly appreciated Regards, The Phantom.
-
I have a asp page called ASP1.asp and it contains
I have included another page called ASP2.asp using in ASP2.asp I need to access the value of my HIDDEN variable, whenever I click the BUTTON, like this <% function ShowMe() Response.Write ' value of HIDEVAL end function %> or is there any way to pass the value of HIDDEN variable to the method ShowMe() Help greatly appreciated Regards, The Phantom.
-
I have a asp page called ASP1.asp and it contains
I have included another page called ASP2.asp using in ASP2.asp I need to access the value of my HIDDEN variable, whenever I click the BUTTON, like this <% function ShowMe() Response.Write ' value of HIDEVAL end function %> or is there any way to pass the value of HIDDEN variable to the method ShowMe() Help greatly appreciated Regards, The Phantom.
You have called function "ShowMe" at ClientSide. Actually "ShowMe" is ServerSide function. You cannot acheive your functionality like this way.
-
You have called function "ShowMe" at ClientSide. Actually "ShowMe" is ServerSide function. You cannot acheive your functionality like this way.
You cannot call ASP function from client side. You can submit the form and then in the next page, call "ShowMe" function. Om Prakash