asp.net - Alert Meassage Box Issue -


i have alert message displaying message of validation. includes 1 - symbol. did not add symbol on code. code shown below.

<tr>   <td>     <font face="verdana, arial, helvetica, sans-serif" size="2">login :</font>   </td>   <td>     <font face="verdana, arial, helvetica, sans-serif" size="2">       <asp:textbox id="txtlogin" runat="server" cssclass="textbox"></asp:textbox>       <asp:requiredfieldvalidator id="validator1" runat="server"         errormessage="login id required" controltovalidate="txtlogin"         display="dynamic">*</asp:requiredfieldvalidator>     </font>   </td> </tr> <tr>   <td>     <font face="verdana" size="2">password :</font>   </td>   <td>     <asp:textbox id="txtpassword" runat="server" cssclass="textbox"        textmode="password"></asp:textbox>     <asp:requiredfieldvalidator id="validator2" runat="server"       errormessage="password required" controltovalidate="txtpassword"       display="dynamic">*</asp:requiredfieldvalidator>   </td> </tr> <tr> 

the error message box image appended below:

alt text http://www.freeimagehosting.net/uploads/5483913c72.jpg.

how avoid symbol?

if remember correctly, function of validationsummary. displaymode property. check out displaymode reference , corresponding validationsummarydisplaymode enumeration.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -