Hi,

Actually I am not using the HTML Table. I am using a Javascript Component
Table to Display the Table Data. One more issue is for various reasons,
we don't use Forms. Now there is a way to get the Data from the Tables.

But I don't know how to send these large data to the Servlet.

Thanks,

Ganesh





-----Original Message-----
From: Richard Yee [mailto:[EMAIL PROTECTED]]
Sent: 05 September, 2001 11:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Sending Large Data to the Server


Ganesh,
Is all of the data in all of the tables editable?  If so, you should
probably design your UI better.
You will run into browser limitations if you have too many form fields
inside a single form.
You should have one form per record and save individual records or break
the results up so that you select the row you want to edit and the contents
of the row are displayed in another page within a form

Another idea is to use JavaScript to identify which fields have changed or
which records have changed and send only the changes back to the servlet.

You should probably keep a copy of the tables in the user's session and
update the changes to the copy.  When the user selects Save, have the
servlet update any changes to the data to the copy and then write the copy
to the DB.

-Richard


-Richard


At 10:22 AM 9/5/01 -0500, you wrote:
>Hi All,
>
>I am having a screen where I have mupltiple tables. When I click Save, I
>need to save all the information from different tables.
>
>How can I send all these data from the client to the server.
>
>I am using JSP. There will be a Servlet in the Backend which saves the data
>in to Data Base.
>
>Please tell me how to send these data to the Servlet.
>
>If I make POST request, how can I access all the Table Data in the Servlet?
>
>
>Please suggest me.
>
>
>Thanks,
>
>Ganesh
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to