如何将 HTML 表格从视图发送到控制器。我在视图中有表格,我现在在网格中显示我的数据我必须将这个网格数据以 HTML 文件发送到控制器。我到达这里,我创建了我的表格的 HTML 文件,我必须将此文件发送到控制器。
<HTML>
<table>
<tr><TD> 12 <TD></tr>
</table>
</HTML>
var request = $.ajax({
url: '..controllername/actionname?htmlTableValue'+htmlTableValue,//action method url which defined in controller
type: 'POST',
cache: false,
data: JSON.stringify(htmlTableValue),
dataType: 'json',
contentType: 'application/json; charset=utf-8'
});
[HttpPost]
public ActionResult nameOfTheAction(string htmlTableValue)
{
}
将空值到达控制器,但无法将数据发送到控制器