RE: client interact with server -- other than submit?

2002-04-08 Thread Williams Mark L DLPC
As far as I know, you can't get a standard browser to send form data to the server without a submit. If you want to repaint the form with the data in the fields, you can send a new verson of the page and form with the variables valued with the entries. That way, the user doesn't lose any entries.

RE: client interact with server -- other than submit?

2002-04-08 Thread rsequeira
save the data that the client submits the first time in a session. RS Williams Mark L DLPC [EMAIL PROTECTED] on 04/08/2002 01:36:09 PM Please respond to Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] cc: Subject: RE: client interact with server -- other

Re: client interact with server -- other than submit?

2002-04-08 Thread Henry
but the problem is that I can't save an object to the server without submit it. - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, April 08, 2002 12:39 PM Subject: RE: client interact with server -- other than submit? save the data

RE: client interact with server -- other than submit?

2002-04-08 Thread Reynir Hübner
. apríl 2002 18:36 To: Tomcat Users List Subject: RE: client interact with server -- other than submit? As far as I know, you can't get a standard browser to send form data to the server without a submit. If you want to repaint the form with the data in the fields, you can send a new verson of the page

Re: client interact with server -- other than submit?

2002-04-08 Thread Micah R. Condon
Hi - I've done this a couple of different ways, depending on which browser versions we need to support. IE 5.x and Netscape 6+ have the capability to send an xml document or a normal get or post request without reloading the whole page; you can use javascript to read your form state and package

Re: client interact with server -- other than submit?

2002-04-08 Thread Henry
Sure, that is exactly what we want here! Would you send me more detail on it? thanx a bunch in advance! - Original Message - From: Micah R. Condon [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, April 08, 2002 1:02 PM Subject: Re: client interact with server

Re: client interact with server -- other than submit?

2002-04-08 Thread rsequeira
] To: Tomcat Users List [EMAIL PROTECTED] cc: Subject: Re: client interact with server -- other than submit? Sure, that is exactly what we want here! Would you send me more detail on it? thanx a bunch in advance! - Original Message - From: Micah R. Condon [EMAIL PROTECTED

RE: client interact with server -- other than submit?

2002-04-08 Thread Bing Zhang
I once heard that frames were bad in web design community. Bing -Original Message- From: [EMAIL PROTECTED] To: Tomcat Users List Sent: 4/8/02 12:34 PM Subject: Re: client interact with server -- other than submit? Or you could save the data in a hidden frame (your browser is divided

Re: client interact with server -- other than submit?

2002-04-08 Thread Henry
]] Sent: 8. apríl 2002 18:36 To: Tomcat Users List Subject: RE: client interact with server -- other than submit? As far as I know, you can't get a standard browser to send form data to the server without a submit. If you want to repaint the form with the data in the fields, you can send

RE: client interact with server -- other than submit?

2002-04-08 Thread Reynir Hübner
the functionality you are looking for. hope it helps, -reynir -Original Message- From: Henry [mailto:[EMAIL PROTECTED]] Sent: 8. apríl 2002 20:09 To: Tomcat Users List Subject: Re: client interact with server -- other than submit? Thanks Reynir I tried your approach, however