如何在ASP.Net webform中使用标签?

前端之家收集整理的这篇文章主要介绍了如何在ASP.Net webform中使用标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到这个纯HTML:
<label for="txtPais">Pais:</label>    
<input name="ctl00$ContentPlaceHolder1$txtPais" type="text" id="ctl00_ContentPlaceHolder1_txtPais" class="textInput" />

在我在Visual Studio中的实际代码我有这个:

<label for="txtPais">Pais:</label>    
<asp:TextBox ID="txtPais" runat="server" CssClass="textInput"></asp:TextBox>

如何应用此文本框的标签

解决方法

您应该使用< asp:Label ...>详细的在 this blog post在哈克德
<asp:Label id="label" AssociatedControlId="txtPais" Text="Pais:" runat="server" />
<asp:TextBox id="txtPais" runat="server" CssClass="textInput" />

这将正确转换正在转换的ID。

原文链接:https://www.f2er.com/aspnet/253914.html

猜你在找的asp.Net相关文章