Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Panel control that contains some control such as text boxes.I want to use asp.net validators to validate text boxes.But if Panle is disabled then text boxes become disabled but validators such as RequiredFieldValidator validate disabled text box.

<asp:Panel ID="Panel1" runat="server" Enabled="false">
    <asp:TextBox ID="TextBox2" runat="server" />
    <asp:RequiredFieldValidator runat="server" ErrorMessage="RequiredFieldValidator"
        ForeColor="#FF3300" ControlToValidate="TextBox2"></asp:RequiredFieldValidator>
</asp:Panel>

How I can set for validators that don't validate disabled controls?

share|improve this question

1 Answer

up vote 2 down vote accepted

if some control is disabled you can set its property CausesValidation="False"

<asp:Button id="Button1" runat="server"
  Text="Cancel" CausesValidation="False">
</asp:Button>

EDITED

can you do this way

if (!panel.Enabled)
{
    RequiredFieldValidator1.Enabled = false;// disable your all validators
}
share|improve this answer
No no.I have some panel with control inside them.according some condition I enable and disable them.I want to validate Enabled panel's controls – Matin Dec 7 '11 at 6:28
you can disable all the validators of respected controls, see my edited answer – FosterZ Dec 7 '11 at 6:40
this is a solution but is not exist another better way? – Matin Dec 7 '11 at 6:42
other thing is i told you already set CausesValidation to false – FosterZ Dec 7 '11 at 6:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.