Hi,
Iam calling
servlet from
jsp using ajax call. Before calling the servlet i use jquery .serialize() method to get all the input values from the form which will help me to pass all the information to the servlet like below:
the above code works fine. But the problem iam facing is when my form has large number of data ie. i have a table and each row has 3 text box, check box and select box. When i have more than 180 rows in the table i get this problem. Since the getParams has larger url
string it doesnot call the servlet.
I have this problem only when i have more datas. Is there any other solution to solve this? is there anyother way to call servlet from javascript and pass values from servlet to jsp ?
Please advise.