Selective Form Validation Using ASP.NET Validation Controls

來源:互聯網
上載者:User
ASP.Net comes in with a set of validation controls that automatically validate the data entered by a user. Though this validation controls are very powerful and easy to use, they have a small draw back in the sense that they require the entire page to be valid before it's submitted back to the server. There is no direct way to validate only a particular section of the page. This article will explain some circumstances where validating a particular section of page will be required and how to accomplish it.

Why validating a particular section of page is needed?

While validation controls is a great tool for validating user input before data is being submitted there are some situations where we might either want the data to be submitted without validation or we want to validate only particular fields in the form.

A typical example for when we may want the data to be passed through without validation is when a page has both submit and cancels server buttons. When the user clicks the submit button the data has to be validated whereas when the user clicks the cancel post back has to happen without any validation.

An example for when we may want to validate only particular fields of a page is a form which is divided into multiple sections with a submit button in each section. When a submit button for a particular section is clicked validation for other sections should not happen.

Solution

The solution for by passing validation on server button click is fairly easy. All we have to do is set the CausesValidation property of the button control to false. Once the CausesValidation property is set to false no validation will happen both on the client side and server side.

The syntax for doing it in the design time is

<asp:button id="cmdCancel" runat="server" Text="Cancel" CausesValidation="False"></asp:button>

This can also be done in runtime using the following code

cmdCancel.CausesValidation = false;

The solution for validating only particular fields requires few lines of JavaScript code and understanding of the Client side API provided by the validation controls. Following table lists the functions and variables provided by the client side API

Name Description
Page_IsValid A Boolean variable which indicates whether the page is valid.
Page_Validators Array of all of the validators in the current page.
Page_ValidationActive A Boolean variable which indicates whether validation should be performed. Setting this variable to False will to turn off validation.
Isvalid This is a property of the client validator indicating whether it is valid.
ValidatorEnable(val, enable) Enables or disables the client validator passed as argument.

To disable a particular validation control we can use the ValidatorEnable function as shown in the script below

<script language="javascript">
ValidatorEnable(nameofvlaidationcontrol, false)
</script>

To disable all the validation control we need to loop through Page_Validators array and disable each validator as shown in script below

<script language="javascript">
for(i=0;i< Page_Validators.length;i++)
{ ValidatorEnable(Page_Validators[i], false)
}
</script>

In order to enable validation only for particular set of controls when a submit button is clicked we need to combine the above two scripts and call it from the client click event of the button as shown in sample below

<script language="javascript">
function enableRegionValidators()
{
for(i=0;i< Page_Validators.length;i++)
{ ValidatorEnable(Page_Validators[i], false)
}
ValidatorEnable(rvRegion, true)
}
</script>

Attaching the function to the client click event of a submit button

cmdRegion.Attributes.Add("onclick","enableRegionValidators();");

When the cmdRegion submit button is clicked all the other validators will be disabled and only the validator named rvRegion will be enabled. If the validation of rvRegion is successful then the page will be submitted. The code we have used so far will disable the validatiors only on the client side, so the validation will still happen on the server side and error messages will be shown. To disable particular validators on the server side the following code has to be added to the button click event

validationcontrolname.IsValid=true;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.