使用 Hovermenu 和 Get RowIndex 单击编辑按钮时如何获取 GridView 中的文本框?
你好,我使用带有悬停菜单的 GridView 我希望当我们单击编辑按钮时,我们可以让 TextBox 在 Gridview 中写入 当单击 e.commandArgument 为空的编辑时,我也会收到错误 所以请给我这两个代码
Hi i m using GridView with hovermenu
and i want that when we click on edit button then we get TextBox to write in Gridview
and also i get error when click on edit for e.commandArgument is null
so please give me code for this both
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样给你的编辑按钮命令名称,
并在你的 gridview 的
RowCommand
事件中,在没有看到代码的情况下很难判断你做错了什么。
编辑:
我认为您需要在编辑按钮中设置
CommandArgument='<%# Container.DataItemIndex %>'
...Give your edit button command name like this,
and in
RowCommand
event of ur gridviewAny how its really difficult to tell what you are doing wrong without seeing your code..
EDIT:
i think you need to set
CommandArgument='<%# Container.DataItemIndex %>'
in your edit button...我在寻找一种方法来获取 gridview rowcommand 事件中的当前行时遇到了您的帖子。
我也浏览过这个链接并认为我会分享:
http://ranafaisal.wordpress.com/2008/03/31/how-to-get-the-current-row-in-gridview-row-command-event/
这解决了我的问题,看起来很干净的。
I ran across your post while searching for a way to get the current row in a gridview rowcommand event.
I also ran across this link and thought I'd share:
http://ranafaisal.wordpress.com/2008/03/31/how-to-get-the-current-row-in-gridview-row-command-event/
This solved my problem and seems very clean.