【发布时间】:2012-07-03 07:46:40
【问题描述】:
我有一个包含 CheckBox 的 gridview。
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" OnRowCreated="GridView1_RowCreated"
BackColor="#F1EFC5" CssClass="SearchEveryWhere_Table" Width="500px">
<HeaderStyle BackColor="#5391DD" ForeColor="White" />
<Columns>
<asp:BoundField DataField="CityCode" ItemStyle-HorizontalAlign="Center" ItemStyle-VerticalAlign="Middle" Visible="false">
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" CssClass="EntryCell hideElement" />
</asp:BoundField>
<asp:BoundField DataField="Switch" ItemStyle-HorizontalAlign="Center" ItemStyle-VerticalAlign="Middle" Visible="false">
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" CssClass="EntryCell hideElement" />
</asp:BoundField>
<asp:BoundField DataField="Page_Number" ItemStyle-HorizontalAlign="Center" ItemStyle-VerticalAlign="Middle" HeaderText="Page">
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" CssClass="EntryCell" />
</asp:BoundField>
<asp:BoundField DataField="Name" ItemStyle-HorizontalAlign="Center" ItemStyle-VerticalAlign="Middle" HeaderText="Title">
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" CssClass="EntryCell" />
</asp:BoundField>
<asp:TemplateField HeaderText="Access">
<ItemTemplate>
<asp:CheckBox runat="server" AutoPostBack="true" OnCheckedChanged="chkStatus_OnCheckedChanged" Checked='<%# Convert.ToBoolean(Eval("Access")) %>' ID="chkStatus" ClientIDMode="Static" />
</ItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
</Columns>
</asp:GridView>
我想将此 CheckBox 的 ID 更改为这样的值:
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
try
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
sp_GetPageAccess08_New_Result CurrentREcord = (sp_GetPageAccess08_New_Result)e.Row.DataItem;
e.Row.Cells[4].FindControl("chkStatus").ID = "chkStatus_" + CurrentREcord.CityCode + "_" + CurrentREcord.Page_Number + "_" + CurrentREcord.Switch.ToString();
if (CurrentREcord.Access == false)
{
e.Row.BackColor = System.Drawing.Color.FromArgb(252, 212, 243);
}
}
}
catch (Exception ex)
{
}
}
问题是当我想获得ID 时,我在chkStatus_OnCheckedChanged 中获得chkStatus:
rotected void chkStatus_OnCheckedChanged(object sender, EventArgs e)
{
try
{
CheckBox chk = sender as CheckBox;
string ID = chk.ID;
如何更改ID 的chkStatus?如果我无法将该字符串保存在可以进入chkStatus_OnCheckedChanged 的属性中?
谢谢
【问题讨论】:
-
我不会触及 ID 属性,因为这是必需的(并在回发时重建)相反,我会使用复选框的属性。查看此链接以使用属性。 codeproject.com/Tips/88324/…
标签: c# asp.net c#-4.0 gridview