Please help me with this!

2000-10-02 Thread Lorena Carlo
Hi everybody, Can somebody give me an example of declaring a variable in request scope (servlet) in order to see it then in a JSP page?. Thanks in advance Lorena Carlo === To unsubscribe: mailto [EMAIL PROTECTED] with body

Re: Please help me with this!

2000-10-02 Thread Yan Zhu
session.setAttribute("myvar","test") something like this? Lorena Carlo wrote: > Hi everybody, > > Can somebody give me an example of declaring a variable in request scope > (servlet) in order to see it then in a JSP page?. > > Thanks in advance > > Lorena Carlo > > =

Re: Please help me with this!

2000-10-02 Thread Andy Purshottam
Look on page 356 of Hall. http://www.coreservlets.com -Original Message- From: Lorena Carlo [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 07, 1999 1:39 PM To: [EMAIL PROTECTED] Subject: Please help me with this! Hi everybody, Can somebody give me an example of declaring a

Re: Please help me with this!

2000-10-02 Thread Jashua Ni
Zhu Sent: Sunday, October 01, 2000 7:12 PM To: [EMAIL PROTECTED] Subject: Re: Please help me with this! session.setAttribute("myvar","test") something like this? Lorena Carlo wrote: > Hi everybody, > > Can somebody give me an example of declaring a variable in reque

Re: Please help me with this!

2000-10-03 Thread Veronique Dupierris
In your servlet : request.setAttribute("varName", varObj); req.getRequestDispatcher(res.encodeURL("TestScope.jsp")).forward(req,res); in TestScope.jsp VarType varJsp = (VarType) requets.getAttribute("varName"); Hope this help Regards veronique Lorena Carlo a écrit : > Hi everybody, > > Can s