i am using request.getParameter("myName" in my jsp page.
when i do in a javascript function :
var x,y;
x= <%= request.getParameter("myName" %> //-->> i get NULL
y=<%=myName%> // -->> i am reciving my name as it was passed to the page!!!
what is that!
why x get NULL
and y get's a value????
thanks in advance
Peleg
when i do in a javascript function :
var x,y;
x= <%= request.getParameter("myName" %> //-->> i get NULL
y=<%=myName%> // -->> i am reciving my name as it was passed to the page!!!
what is that!
why x get NULL
and y get's a value????
thanks in advance
Peleg