如何在编辑模式下在 GridView 中 FindControl() ?
我想访问控件并用它们的值更新数据库。请注意使用以下代码:
void grdList_UpdateCommand(object source, GridCommandEventArgs e)
{
string str = ((RadTextBox)e.Item.FindControl("txtLookupItemValue")).Text;
}
我有权控制 txtLookupItemValue,但它包含编辑前的内容,而不是用户输入的实际值。
I want to access controls and update database with their value. Notice using following code:
void grdList_UpdateCommand(object source, GridCommandEventArgs e)
{
string str = ((RadTextBox)e.Item.FindControl("txtLookupItemValue")).Text;
}
I have access to control txtLookupItemValue, but it contains before-edit content, not actual value that user has entered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试在编辑事件期间设置字符串:
然后更新数据库并重新绑定网格视图以显示更新的行。
have you tried setting the string during the edit event:
Then update your DB and rebind the gridview to display the updated row.
我认为你可以在网格更新时获取该值。例如:
然后将其添加到 aspx 上的 gridview 中:
I think you can get the value when the grid is updating. E.g:
Then add this to the gridview on the aspx: