JuLiaN_RoX
New Member
I have an \[code\]aspx.net\[/code\] page with a large form to add an order.
This page contains a table with many order lines.
Per order line, there are 20 form fields and 5 hidden fields.There is a print button to print the order, but before that it has to save it first.My problem is that when I use \[code\]$("form").serializeArray()\[/code\], the array is 1 to 1.000.000 times empty.
It doesn't matter which browser I use.This is making me crazy because lot's of users are calling me to fix this problem a.s.a.p.
I don't know to where to start debugging.
Maybe I have to put some attributes to the WebMethod ?\[code\][WebMethod]public static string VerwerkForm(field[] fields) { // do the magic return "ok";}public class field { public string name { get; set; } public string value { get; set; }}\[/code\]
This page contains a table with many order lines.
Per order line, there are 20 form fields and 5 hidden fields.There is a print button to print the order, but before that it has to save it first.My problem is that when I use \[code\]$("form").serializeArray()\[/code\], the array is 1 to 1.000.000 times empty.
It doesn't matter which browser I use.This is making me crazy because lot's of users are calling me to fix this problem a.s.a.p.
I don't know to where to start debugging.
- Is \[code\]serializeArray()\[/code\] the problemen?
- Or maybe the postdata is to large or corrupt?
- Maybe the \[code\]WebMethod\[/code\] needs some extra attributes?
Maybe I have to put some attributes to the WebMethod ?\[code\][WebMethod]public static string VerwerkForm(field[] fields) { // do the magic return "ok";}public class field { public string name { get; set; } public string value { get; set; }}\[/code\]