您好我使用Gridview并需要更改元素的可见属性 在绑定时在所有行中。
我试图通过代码隐藏来改变,但是, 只更改了第一个记录的元素属性。
元素是Panel
,
我需要在所有记录上更改的属性是; Visible
财产。
如何像Repeater一样运行这个GridView,以便能够更改所有Panel元素'绑定时可见属性?
我的代码如下:
ASPX:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
GridLines="None" DataKeyNames="ID"
AllowPaging="True" OnDataBinding="GridView1_DataBinding">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Panel ID="Panel1" runat="server" Visible="false">
<!-- code ... -->
</asp:Panel>
<asp:Panel ID="Panel2" runat="server" Visible="false">
<!-- code ... -->
</asp:Panel>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
CS:
private void Method1(string Key)
{
if (Key==1)
{
Panel Panel1 = GridView1.Controls[0].Controls[1].FindControl("Panel1") as Panel;
Panel1.Visible = true;
}
else
{
Panel Panel2 = GridView1.Controls[0].Controls[1].FindControl("Panel2") as Panel;
Panel2.Visible = true;
}
}
protected void GridView1_DataBinding(object sender, EventArgs e)
{
Method1(1);
}
答案 0 :(得分:1)
您的问题是您正在使用OnDataBinding
事件。这只发生一次 - 当GridView绑定了数据时。您需要的是OnRowDataBound
事件。这将每行触发一次。
OnRowDataBound="GridView1_RowDataBound"
然后在后面的代码中处理它,找到每行中的面板。
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
{
Panel Panel1 = (Panel)e.Row.FindControl("Panel1");
//So on and so forth...
}
}