IsPageValid - has anyone used this for field validation? If so, can you recommend a tutorial on it

  • Thread starter Thread starter Randy Smith
  • Start date Start date
R

Randy Smith

Hi,
It appears as though we will have a new coding standard for field validation
that includes "IsPageValid". I've been unable to find anything about this
on the "microsoft.com" site by googling "IsPageValid". Anyway, does anyone
have any experience with this technique, and if so, can you recommend a
tutorial or sample on it?

It is much appreciated!!!!!
Randy Smith
 
Hi,
It appears as though we will have a new coding standard for field validation
that includes "IsPageValid". I've been unable to find anything about this
on the "microsoft.com" site by googling "IsPageValid". Anyway, does anyone
have any experience with this technique, and if so, can you recommend a
tutorial or sample on it?

It is much appreciated!!!!!
Randy Smith

Simpley if javascript not enable in client side invalid data can be
cary over in server in case of asp.net validator IsPageValid check at
server side all validator are passed or any in valid data are comes.
 
Hi,
It appears as though we will have a new coding standard for field validation
that includes "IsPageValid". I've been unable to find anything about this
on the "microsoft.com" site by googling "IsPageValid". Anyway, does anyone
have any experience with this technique, and if so, can you recommend a
tutorial or sample on it?

It is much appreciated!!!!!
Randy Smith

Page.IsValid Property
http://msdn2.microsoft.com/en-us/library/system.web.ui.page.isvalid.aspx
 
I am not sure about PageIsValid but the closest I could think of is the
Page_IsValid - a predefined client-side JavaScript variable used to check if
all the validator-attacked controls pass the validation.
 
Back
Top