我正在使用动态创建的自定义文本框控件。我想添加' name'使用 HtmlTextWriter.AddAttribute 方法进行属性。但是当我使用IE浏览器中的开发人员工具检查页面时,该属性在元素上添加了两次。这将导致错误' XML5634:此元素上已存在具有相同名称的属性。'在Android用户代理中。这是我的代码
<table id="tblTester" runat=server>
<tr>
<td>
<asp:Label ID="Label1" runat=server Text="This is the custom textbox"></asp:Label>
</td>
<td id="tdTester">
</td></tr>
</table>
aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
CustomTextBox txtBox = new CustomTextBox();
txtBox.TextMode = TextBoxMode.Password;
txtBox.ID = "txtAnswerRe";
txtBox.Width = Unit.Pixel(220);
tdTester.Controls.Add(txtBox);
}
CustomTextbox.cs
public class CustomTextBox : System.Web.UI.WebControls.TextBox
{
protected override void AddAttributesToRender(HtmlTextWriter writer)
{
if (this.TextMode == TextBoxMode.Password)
{
Page page = this.Page;
if (page != null)
{
page.VerifyRenderingInServerForm(this);
}
string uniqueID = this.UniqueID;
if (uniqueID != null)
{
writer.AddAttribute(HtmlTextWriterAttribute.Name, uniqueID);
}
writer.AddAttribute(HtmlTextWriterAttribute.Type, "password");
string text = this.Text;
if (text.Length > 0)
{
writer.AddAttribute(HtmlTextWriterAttribute.Value, text);
}
base.AddAttributesToRender(writer);
}
else
{
// If Textmode != Password
base.AddAttributesToRender(writer);
}
}
}
以下是页面检查的结果
<input name="txtAnswerRe" type="password" name="txtAnswerRe" type="password" id="txtAnswerRes" /></td>
在这种情况下,在一个元素中添加了相同名称的属性的原因是什么。
答案 0 :(得分:1)
这种情况正在发生,因为如果base.AddAttributesToRender(writer);
语句,您最后会调用if
。这里不需要调用base
,只需添加一行即可添加id
属性:
writer.AddAttribute(HtmlTextWriterAttribute.Id, this.ID);