我正在使用以下方法将自定义属性添加到复选框:
CheckBox chkBx = new CheckBox();
chkBx.ID = "chk" + n;
chkBx.Attributes["itemname"] = strtemPath;
但结果我得到以下HTML:
<span itemname="Some folder"><input id="MainContent_chk0" type="checkbox" name="MasterPg$MainContent$chk0" /></span>
我期待的是:
<input id="MainContent_chk0" type="checkbox" name="MasterPg$MainContent$chk0" itemname="Some folder" />
知道如何更正C#代码以获得我的预期结果吗?
答案 0 :(得分:2)
尝试类似
的内容chkBx.InputAttributes.Add("itemname", strtemPath);
答案 1 :(得分:0)