0

我已经从后面的代码动态创建了一个 html 输入复选框,并且在将复选框呈现到 aspx 页面后,我无法在按钮单击事件上获取这些复选框的选中属性。week 是一周中所有日期的枚举。这里是示例代码。

HtmlInputCheckBox chkbx = new HtmlInputCheckBox();
chkbx.Attributes.Add("id", ((week)i).ToString());
chkbx.Attributes.Add("runat", "server");
chkbx.Attributes.Add("name", ((week)i).ToString());
chkbx.Attributes.Add("value", "checked");

HtmlGenericControl label = new HtmlGenericControl("label");
label.Attributes.Add("for", ((week)i).ToString());
if (i == 1 || i == 7)
{
    label.Attributes.Add("class", "dow disabled");
    label.Attributes.Add("disabled", "true");
}
else
{
    label.Attributes.Add("class", "dow");
    chkbx.Checked = true;                    
}
label.InnerText = ((week)i).ToString().Substring(0,2);
_dowcontrol.Controls.Add(chkbx);
_dowcontrol.Controls.Add(label);

ASPX 页面

<body>
    <form id="form1" runat="server" method = "post">
        <t2:mycontrol ID="SampleControl" runat="server" >
        </t2:mycontrol>
    <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
    </form>
</body>

ASPX.CS 页面里面的按钮点击应该是什么?

试过了

Request.Form["***"], FindControl("***")
4

1 回答 1

0

为了让您动态创建的控件与页面生命周期中的视图状态、事件和其他阶段进行交互,需要在Init事件中创建它们。在生命周期的后期创建这些控件将使它们无法参与 post value 绑定、viewstate 绑定等。还请注意,您必须在每次回发时重新创建控件。

protected void Page_Init(object sender, EventArgs e)
{
    // Do any dynamic control re/creation here.
}
于 2013-07-24T05:25:58.560 回答