Re: Question regarding JSP and HTML forms

2000-09-07 Thread Kevin Duffey
Only JavaScript can be used. However, you can manipulate the form elements in JSP pages, just as you would in a servlet. > -Original Message- > From: Ryan Richards [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 06, 2000 11:32 AM > To: [EMAIL PROTECTED] > Subject: Qu

Re: Question regarding JSP and HTML forms

2000-09-07 Thread Kevin Jones
Of Jacek Laskowski > Sent: 07 September 2000 17:55 > To: [EMAIL PROTECTED] > Subject: Re: Question regarding JSP and HTML forms > > > Kevin Jones wrote: > > > > The difference bewtween > > > > > > > > > and > > > > >

Re: Question regarding JSP and HTML forms

2000-09-07 Thread Jacek Laskowski
Kevin Jones wrote: > > The difference bewtween > > > and > > > > > is that in the first case the setProperty only gets called when the bean is > created, whereas in the second case the setProperty is always called. That's what I've said, but I've also said that in "scope=request" case it *do

Re: Question regarding JSP and HTML forms

2000-09-07 Thread Kevin Jones
reference [mailto:[EMAIL PROTECTED]]On Behalf Of Jacek Laskowski > Sent: 07 September 2000 10:29 > To: [EMAIL PROTECTED] > Subject: Re: Question regarding JSP and HTML forms > > > Kevin Jones wrote: > > > > > The JSP page can access the form params any number of ways

Re: Question regarding JSP and HTML forms

2000-09-07 Thread Jacek Laskowski
Kevin Jones wrote: > > The JSP page can access the form params any number of ways but typically > through > > <% myParam = request.getParameter("ParamName" %> > > or more likely > > > As you showed the above example with <%%>, I thought about the bottom one, but with one little difference. I'

Re: Question regarding JSP and HTML forms

2000-09-06 Thread Kevin Jones
PROTECTED] > Subject: Question regarding JSP and HTML forms > > > Question: > > I am trying to use JSP's for a project I am working on. Can > I use JSP to obtain information from HTML form elements as I > would do in JavaScript? hence eliminating the need for > Java

Re: Question regarding JSP and HTML forms

2000-09-06 Thread Boriso Edward
n the form once they reach the server. -Ed "Ryan Richards" <[EMAIL PROTECTED]> on 09/06/2000 02:31:42 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: (bcc: EDWARD M. BORISO/EMPL/VA/Bell-Atl) Subject: Question regarding JSP and HTML forms

Question regarding JSP and HTML forms

2000-09-06 Thread Ryan Richards
Question: I am trying to use JSP's for a project I am working on. Can I use JSP to obtain information from HTML form elements as I would do in JavaScript? hence eliminating the need for JavaScript altogether? Any links to JSP-HTML Form info would be appreciated. I have had trouble finding specif