使用 MVC 的 ASP.Net Gridview 控件
我需要在 ASP.Net MVC 中使用 ASP.Net Grdview 控件。现在我需要处理表单提交操作。我正在使用 Objectdatasource 来填充我的网格。现在,当我提交时,我需要获得网格数据的当前状态,其中包括复选框的选中状态。
I've a requirement to use ASP.Net Grdview control in ASP.Net MVC. Now I need to handle form submit action.I'm using Objectdatasource for filling my grid. Now when I submit, I need to have current state of my grid data which includes checkboxes checked state.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
旧的 ASP.NET 控件旨在与传统的 Web 表单配合使用并通过回发进行处理。 ASP.NET MVC 不使用回发,因此它们不能很好地协同工作。您可以使用控件来很好地显示数据,但在服务器上进行处理将非常复杂。
使用专为 ASP.NET MVC 设计的网格控件会更好。这是一个很好的问题,其中包含几个链接:
ASP.NET MVC 的网格控件?
The old ASP.NET controls are made to work with traditional web forms and processing through postback. ASP.NET MVC doesn't use postbacks so they won't work together well. You can use the controls for displaying data well enough, but getting processing on the server will be prohibitively complicated.
You'll be much better off using a grid control designed specifically for ASP.NET MVC. Here's a good question with links to several:
grid controls for ASP.NET MVC?