从 SpGridView 选定的行中提取数据
使用 SPGridView,我想填充文本框在按钮单击事件上使用 SPGridview 选定行数据。
txtCode= SPGridView.SelectedRow.Cell[1].Text;
在调试时,它显示 Cell[1]
为空,但它在网格中显示数据。
如何才能实现这一目标?
Using SPGridView, I want to fill textboxes with the SPGridview Selected Row Data on a button click event.
txtCode= SPGridView.SelectedRow.Cell[1].Text;
On debugging, it shows Cell[1]
is empty but it is showing data in the Grid.
How can this be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住单元格索引从 0 开始。
您也可以尝试这个
Remember that cell index start at 0.
you can also try this
我刚刚遇到类似的问题。
我发现“selectedvalue”是解决方案。
所以尝试一下:
I've just got similar problem.
And I've find out that "selectedvalue" is solution.
so try :