Hi John,
You are right. It's possible to display error using inline error message or
client element.
As an alternative to using the Error Message property for the control, you
can display an error for the control by simply writing it between the open
and close tags for the Validation control. However, unlike the error
Message property, which only supports text-based errors, an inline error
message can contain other client side elements, such as images. Here is a
sample for your reference:
<input type =text id="TextFirstname" value ="Enter First Name" runat
=server >
<asp:RequiredFieldValidator
id="RequiredFieldValidator1"
style="Z-INDEX: 103; LEFT: 248px; POSITION: absolute; TOP: 56px"
ControlToValidate="TextFirstname"
InitialValue="Enter First Name"
display="Dynamic"
runat="server">
<img src="
http://localhost/1.jpg">
</asp:RequiredFieldValidator>
I hope this helps.
Best Regards,
Lewis Wang
Support Professional
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "John Saunders" <
[email protected]>
| Subject: Tags Ok In Text of Validator Control?
| Date: Wed, 23 Jul 2003 14:13:27 -0400
| Lines: 17
| Organization: SurfControl, Inc.
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <
[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host254wb.surfcontrol.com 65.194.40.254
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP11.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:161469
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Is this ok? I haven't seen any examples of it, but it looks like it should
| work:
|
|
| <asp:requiredfieldvalidator id="valreqUserName" runat="server"
| controltovalidate="txtUserName"
| errormessage="Please enter the user name">
| <span title="Please enter the user name">
| <img src="../../images/bullet.gif">
| </span>
| </asp:requiredfieldvalidator>
| --
| John Saunders
| Internet Engineer
| (e-mail address removed)
|
|
|