Ask a Question related to ASP.NET General, Design and Development.
-
DesignerX #1
validator.enableclientscript property set to false and server side validation is not occurring.
Just to insure that my application would work as expected with older and
inferior browsers I set the enableclientscript of my validators to false.
The validators and the input boxes they check are dynamically created server
controls. I have a submit button on the form, I included an isValid() check
around the code under the submit button. Much to my disappointment the
client side validation is not working.
Any ideas on what may be causing or a way to investigate this problem?
TIA,
Stan
DesignerX Guest
-
server-side form validation
Is there a server-side (ASP) form validation extension for DMX? Thanks, -D- -
Server Side validation Issue
This is a pretty straight forward question that I may be putting in a vague way. Any help would be appreciated. I'm looking to some server side... -
Server-Side Validation
Hello, Does anyone have a quick and dirty script for implementing server-sider form validation (checking for illegal characters)? I already have... -
Server Side Validation
Does anyone know of any ASP server side form validations extensions? Thanks -
only custom validation control does server side validation?
On a CustomValidator you have to provide the validation code because otherwise it doesn't know what to do for the validation. Other validator... -
Nicole Calinoiu #2
Re: validator.enableclientscript property set to false and server side validation is not occurring.
Stan,
Are you calling the page's Validate method prior to attempting to use
IsValid? If not, IsValid will not return the result of server-side
validation.
HTH,
Nicole
"DesignerX" <designerx2@yahoo.com> wrote in message
news:j36dnUYwPLYRerqiRTvUqw@giganews.com...server> Just to insure that my application would work as expected with older and
> inferior browsers I set the enableclientscript of my validators to false.
> The validators and the input boxes they check are dynamically createdcheck> controls. I have a submit button on the form, I included an isValid()> around the code under the submit button. Much to my disappointment the
> client side validation is not working.
>
> Any ideas on what may be causing or a way to investigate this problem?
>
> TIA,
>
> Stan
>
>
Nicole Calinoiu Guest
-
DesignerX #3
Re: validator.enableclientscript property set to false and server side validation is not occurring.
The timing of dynamically creating server controls is so incredibly tricky,
once again timing was the problem.
Stan
"DesignerX" <designerx2@yahoo.com> wrote in message
news:j36dnUYwPLYRerqiRTvUqw@giganews.com...server> Just to insure that my application would work as expected with older and
> inferior browsers I set the enableclientscript of my validators to false.
> The validators and the input boxes they check are dynamically createdcheck> controls. I have a submit button on the form, I included an isValid()> around the code under the submit button. Much to my disappointment the
> client side validation is not working.
>
> Any ideas on what may be causing or a way to investigate this problem?
>
> TIA,
>
> Stan
>
>
DesignerX Guest



Reply With Quote

