-
declaring local variables in jsp page (1 messages)
- Posted by: kameron cole
- Posted on: June 08 2006 10:54 EDT
I need to declare two local variables in a jsp page. I need to populate them with values I assign in a scriplet. What's the easiest way to do this?Threaded Messages (1)
- Re: declaring local variables in jsp page by Fernando del Rio on June 08 2006 12:19 EDT
-
Re: declaring local variables in jsp page[ Go to top ]
- Posted by: Fernando del Rio
- Posted on: June 08 2006 12:19 EDT
- in response to kameron cole
I am not very good in English but i think you asked for: Samples of asignations: String Titulo=(String)session.getAttribute("Titulo"); String sSel="Prueba"; Populing: <%=Titulo%> <script languale="javascript"> alert("<%=sSel%>"); </script>