mvc2.0中如何将html表格数据传递给控制器

发布于 2024-10-07 21:02:01 字数 70 浏览 2 评论 0原文

我有一个 HTML 表格(网格)。我想将 html 表数据传递给控制器​​。(mvc 2.0) 谁能帮忙,这怎么可能。 谢谢。

I have a HTML table (grid). I want to pass the html table data to controller.(mvc 2.0)
can anyone help how does it is possible.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2024-10-14 21:02:01

我将使用 jQuery 获取所有行和单元格,然后将这些单元格的内容放入 JSON 对象中,该对象可以发布到 Action 方法。

I would use jQuery to get all the rows and cells and then put the content of those cells into JSON object which could be posted to Action method.

终弃我 2024-10-14 21:02:01

你不能只是将innerHtml从具有表html作为httpPost的div传递到控制器并将其作为字符串参数获取,使用此方法可能会遇到字符串长度问题。

但我不明白你为什么要这样做的逻辑,你是想保留数据吗?

can you not just pass the innerHtml from a div which has the table html as a httpPost to a controller and get it as a string argument, you may have issues with string lengths using this method.

but i dont understand your logic of why you would want to do that, are you trying to persist data?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文