我如何获取行键/单元格值& 在标准 .net 2.0 Gridview 中选择一行时调用方法
我有标准的 .net 2.0 gridview 控件,当选择一行时,我想从中获取行键或单元格值。
每次选择一行时我还需要调用一个方法。
有谁知道我如何使用 ASP.net 和 ASP.NET 来做到这一点? VB?
I have standard .net 2.0 gridview control from which i want to get row keys or cell values from the grid when a row is selected.
I also need to call a method each time a row is selected.
Does anybody know How i can do this using ASP.net & VB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您的意思是通过“选择”命令进行选择。 这会触发 SelectedIndexChanged 事件。 从那里开始,您就拥有了该键的 SelectedDataKey.Value (或 .Values)。
I assume you mean selection by the Select command. That fires a SelectedIndexChanged event. and from there on you have the SelectedDataKey.Value (or .Values) for the Key.
将按钮或链接按钮添加到 gridView。
对于“Select”中输入的命令名称,
在设计器窗口中,双击您的gridView,将自动生成您选择的索引更改方法。
Add a button or link button to your gridView.
For the command name put in "Select"
In the designer window, double click your gridView and your selected index changed method will be automatically generated.
我更喜欢使用第三方网格,例如 Telerik one 它允许服务器和客户端选择以及单击回发以处理一些逻辑。
迪克
I prefer using third-party grid like the Telerik one which allows server and client selection as well as postback on click to process some logic.
Dick