Hello.
How can I control the position of customValidator .
I have code like this (ASP.NET)
<asp:CustomVali dator dir = "rtl" CHARSET=WINDOWS-1255"
id = "email_err"
ControlToValida te="a_email"
OnServerValidat e="checkEmail "
Text="..."
ErrorMessage=". .."
runat="server" />
in CSS I have declared :
#email_err
{
position: absolute;
top:290px;
left:230px;
width:220px;
visibility:visi ble;
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:CustomVali dator dir = "rtl" CHARSET=WINDOWS-1255"
id = "email_err"
ControlToValida te="a_email"
OnServerValidat e="checkEmail "
Text="..."
ErrorMessage=". .."
runat="server" />
in CSS I have declared :
#email_err
{
position: absolute;
top:290px;
left:230px;
width:220px;
visibility:visi ble;
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 :)
Comment