0

我有一个包含复选框的网格视图。

<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进去chkStatuschkStatus_OnCheckedChanged

rotected void chkStatus_OnCheckedChanged(object sender, EventArgs e)
{
    try
    {
        CheckBox chk = sender as CheckBox;
        string ID = chk.ID;

我怎样才能ID改变chkStatus?如果我无法将该字符串保存在可以进入的属性中chkStatus_OnCheckedChanged

谢谢

4

2 回答 2

1

更正我的代码

在你的 OnRowDatabound 添​​加

((CheckBox)e.Row.Cells[4].FindControl("chkStatus")).Attributes.Add("MyData", string.Format("{0}_{1}_{2}", CurrentREcord.CityCode, CurrentREcord.Page_Number, CurrentREcord.Switch.ToString());

在您的复选框选中/取消选中事件中使用它来获取数据

string data = chkStatus.Attributes["myData"];
于 2012-07-03T07:56:20.473 回答
0

您可以使用 checkBox.Attributes.Add 方法将值存储在自定义属性中,还可以在 CheckBox 附近插入一个 HiddenField 控件,并将所需的值存储在其 Value 属性中(更好)。

于 2012-07-03T08:00:51.883 回答