我们如何在网格视图的row命令中找到控件

我们如何在网格视图的row命令中找到控件

本文介绍了我们如何在网格视图的row命令中找到控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在网格视图的行命令中找到控件

推荐答案

实际上GridViewCommandEventArgs中没有行,因此您需要从命令源命名容器中获取行

Actually there is no Row in GridViewCommandEventArgs, so you will need to get the row from the command source naming container

GridViewRow row = (GridViewRow)(((Control)e.CommandSource).NamingContainer);

然后您将可以使用

TextBox myTextBox = row.FindControl("MyTextBoxId") as TextBox;

希望这会有所帮助!

这篇关于我们如何在网格视图的row命令中找到控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 22:47