Client Validation without Js

  • Thread starter Thread starter Johny
  • Start date Start date
J

Johny

Hi....I have a problem with my asp page, when it have
diferent controls and some validation control...but i want
to validate just some controls if the user select a
checkbox i have to control just two control and if the
user select the other checkbox well i have to control the
another...

The problem is how could i decide which validator control
use when the user choose just a group.

I know that a solution is using javascript but can i
use .net code?
 
| I know that a solution is using javascript but can i
| use .net code?

No, if you want to use client validation. You can disable it and do
everything on server the way you like. But when you need to work strictly
client-side, you need to write your own validation in JS/VBS.
 
Back
Top