我想用asp.net和jquery创建水印。我有一个包含这样的文本框的页面:
<tr>
<td>
<%=GetLocaleResourceString("Address.FirstName")%>:
</td>
<td>
<nopCommerce:SimpleTextBox runat="server" ID="txtFirstName" Width="165px" class="watermark" Text="Type your First Name"
Tooltip="Type your First Name" ErrorMessage="<% $NopResources:Address.FirstNameIsRequired %>">
</nopCommerce:SimpleTextBox>
<asp:Label ID="lblShippingAddressId" runat="server" Visible="false"></asp:Label>
</td>
</tr>
<tr>
<td>
<%=GetLocaleResourceString("Address.LastName")%>:
</td>
<td>
<nopCommerce:SimpleTextBox runat="server" ID="txtLastName" Width="165px" ErrorMessage="<% $NopResources:Address.LastNameIsRequired %>">
</nopCommerce:SimpleTextBox>
</td>
</tr>
其中nopCommerce:SimpleTextBox是这样的用户控件:
<%@ Control Language="C#" AutoEventWireup="true"
Inherits="NopSolutions.NopCommerce.Web.Modules.SimpleTextBox" Codebehind="SimpleTextBox.ascx.cs" %>
<asp:TextBox ID="txtValue" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvValue" ControlToValidate="txtValue" Font-Name="verdana"
Font-Size="9pt" runat="server" Display="Dynamic">*</asp:RequiredFieldValidator>
我正在关注这篇文章:
并在使用文本框控件的页面中添加css类和标题(请在第一个标记中查看标题和css)。
但是当我看到页面源代码时,我得到了这个标记:
<input type="text" style="width:165px;" class="textBox" id="ctl00_ctl00_cph1_cph1_ctrlCheckoutSinglePage_ctrlCheckoutBillingAddress_ctrlBillingAddress_txtEmail_txtValue" name="ctl00$ctl00$cph1$cph1$ctrlCheckoutSinglePage$ctrlCheckoutBillingAddress$ctrlBillingAddress$txtEmail$txtValue">
没有CSS没有添加标题。请建议我如何添加水印?
此致 Asif Hameed
答案 0 :(得分:0)
您似乎没有将class="watermark"
用于txtValue
<asp:TextBox ID="txtValue" runat="server"></asp:TextBox>
应该是
<asp:TextBox ID="txtValue" class="watermark" runat="server"></asp:TextBox>