gpt4 book ai didi

ASP.net 无法设置复选框值!

转载 作者:行者123 更新时间:2023-12-02 10:25:04 25 4
gpt4 key购买 nike

CheckBox newBox = new CheckBox();
newBox.Text = dtCommon[i].userName;
newBox.CssClass = "cbox";
newBox.Attributes["value"] = dtCommon[i].id.ToString();
ApprovalSelectPanel.Controls.Add(newBox);

渲染为:

<input id="ctl00_mainContent_ctl00" type="checkbox" name="ctl00$mainContent$ctl00" checked="checked" />

如何获取值属性?我的 JQuery 需要访问它!

最佳答案

我敢打赌,它正在设置属性,但在包含范围内(查找一个元素)。

您想要使用InputAttributes属性代替:

newBox.InputAttributes["value"] = dtCommon[i].id.ToString();

关于ASP.net 无法设置复选框值!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5249368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com