M
Mr. X.
Hello.
How can I control the position of customValidator.
I have code like this (ASP.NET)
<asp:CustomValidator dir = "rtl" CHARSET=WINDOWS-1255"
id = "email_err"
ControlToValidate="a_email"
OnServerValidate="checkEmail"
Text="..."
ErrorMessage="..."
runat="server" />
in CSS I have declared :
#email_err
{
position: absolute;
top:290px;
left:230px;
width:220px;
visibility:visible;
font-size:16pt;
font-weight:bold;
color:red;
}
But, I see that the customValidator's position is not at the position of
CSS.
I want a sample for that, please.
Thanks
How can I control the position of customValidator.
I have code like this (ASP.NET)
<asp:CustomValidator dir = "rtl" CHARSET=WINDOWS-1255"
id = "email_err"
ControlToValidate="a_email"
OnServerValidate="checkEmail"
Text="..."
ErrorMessage="..."
runat="server" />
in CSS I have declared :
#email_err
{
position: absolute;
top:290px;
left:230px;
width:220px;
visibility:visible;
font-size:16pt;
font-weight:bold;
color:red;
}
But, I see that the customValidator's position is not at the position of
CSS.
I want a sample for that, please.
Thanks