Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disabling validation controls when using a LinkButton

I am using a LinkButton to trigger an email template. When the LinkButton is clicked, I need to disable all field validation controls

I tried the causesvalidation property, but the validations are still triggered.

How can I do this in c# / asp.net?

like image 255
user279521 Avatar asked Apr 14 '26 17:04

user279521


2 Answers

Well, I don't think you need to disable the validations controls. I assume that you have another button on the page that fires all validation but you just want to skip them for this button.

Use CauseValidation = false on your LinkButton

<asp:LinkButton id="LinkButton1" runat="server"
  Text="Generate Template" CausesValidation="False">
</asp:LinkButton >

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.causesvalidation%28VS.80%29.aspx

like image 107
Claudio Redi Avatar answered Apr 16 '26 05:04

Claudio Redi


Set the OnClick attribute of the LinkButton to a method you create that disables the controls.

<asp:LinkButton runat="server" OnClick="btnLinkButton_Click"></asp:LinkButton>

and

protected void btnLinkButton_Click(object sender, EventArgs e)
{
    control1.Enabled = false;
    control2.Enabled = false;
}

mileage will vary when disabling your validation controls, but this would work if you were using the generic .NET validation controls.

like image 27
David Fox Avatar answered Apr 16 '26 07:04

David Fox