GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET 2.0
Go To First  |  Previous Question  |  Next Question 
 ASP.NET 2.0  |  Question 99 of 159    Print  
What types of data validation events are commonly seen in the client-side form validation?

  
Total Answers and Comments: 5 Last Update: April 29, 2008     Asked by: Calvin 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
July 21, 2006 02:44:44   #1  
Karthikeyan        

RE: What types of data validation events are commonly ...
Required Field Validator
 
Is this answer useful? Yes | No
August 24, 2006 16:12:54   #2  
shankar        

RE: What types of data validation events are commonly ...

compare validator--- for password checking

regular expression validator---for checking like email format


 
Is this answer useful? Yes | No
November 13, 2006 06:37:30   #3  
nitin        

RE: What types of data validation events are commonly ...

compare validator--- for password checking

regular expression validator---for checking like email format

Range validator---checking for dates etc


 
Is this answer useful? Yes | No
December 09, 2006 01:02:13   #4  
Raj        

RE: What types of data validation events are commonly ...

WebForm_OnSubmit() Js method is tied to form's submit event.

Here is what is inside WebForm_OnSubmit() -
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false)  return false;
return true;
}

ValidatorOnSubmit() method will inturn call ValidatorCommonOnSubmit() if the control that caused postback have "CausesValidation" set.

ValidatorCommonOnSubmit() is the one responsibile to check if all the validators are valid.


 
Is this answer useful? Yes | No
April 29, 2008 13:19:16   #5  
jayban7 Member Since: April 2008   Contribution: 1    

RE: What types of data validation events are commonly seen in the client-side form validation?
RangeValidator
Regular Expression validator
Requied Form Validator
Custom Validator
Compare Validator

 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 




About Us  |   Privacy Policy  |   Terms and Conditions  |   Contact  |   Site Map  |   Add Question  |   Propose Category  |   RSS Feeds  |   Articles Sitemap  |   Site Updates  |   Add Resource

Copyright © 2005 - 2008 GeekInterview.com. All Rights Reserved
Page copy protected against web site content infringement by Copyscape