在asp.net mvc中,很容易在ajax页面webmethod中收到表单集合,如:
public bool AddSomething(FormCollection form)
{
return true;
}
如何在asp.net页面方法中接收序列化数据:
[WebMethod]
public static string AddSomething(??)
{
//...
return true;
}
答案 0 :(得分:0)
我不确定你在问什么,但如果你正在讨论如何使用ajax以序列化的方式发送表单数据,那么你可以试试这个......
url='your url'
$.post(url,$('#formId').serialize(), function(responseValue) {
alert(responseValue);
});
已更新:
[WebMethod]
public static string AddSomething()
{
string foo = Request["form element name"];//example
return true;
}