通过对象数据源将网格密钥传递给业务类
在 ASP.NET Webforms 中,有一个 ASP.NET GridView 通过对象数据源连接到 C# 类,
我在网格中设置了一个 ID 作为 DataKeyName。当我更新网格时,如何将其传递给 C# 类?
In ASP.NET Webforms have an ASP.NET GridView connected to a C# class via an object data source
I have an ID set up as a DataKeyName in the grid. How do I pass this to the C# class when I update the grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以在网格行更新事件中获取当前行的网格数据键名称,
然后使用对象数据源更新事件将其传递给 C# 类
Can pick up the grids data key name for the current row in the grids row updating event
Then pass it to C# class using object data sources updating event
实际上,数据键名称是由数据网格自动传递到对象数据源的。
Actually data key names are passed automatically by the datagrid to the object data source.