我想访问gridview中模板字段中的对象(超链接或按钮)。 我该怎么做?
答案 0 :(得分:1)
假设您正在将数据绑定到它,您需要查看在RowDataBound事件中执行此操作。
以下是如何在模板字段中检索控件的示例:
<强>的.aspx:强>
<asp:GridView ID="GridView1" Runat="server"
OnRowDataBound="GridView1_RowDataBound">
<Columns>
<asp:TemplateField HeaderText="Template Field">
<ItemTemplate>
<asp:Button ID="btnTest" Runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<强>代码隐藏:强>
void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Button btnTest = (Button)e.Row.FindControl("btnTest");
btnTest.Text = "I'm in a Template Field";
}
}
答案 1 :(得分:0)
您可以在RowDataBound
上使用它,或点击模板控件的事件,如
TextBox txtTemp= (TextBox )e.Row[e.RowIndex].FindControl("yourControlName");
string someText=txtTemp.Text;