ASP.NET Input validators
.NET (Core and Framework)
1
Posts
1
Posters
13
Views
1
Watching
-
Hi everyone, I've got the following situation: Multiple modules (Web Controls in fact) reside on the same web page. Each has some input fields that need to be checked before submitting. I tried to use those nice input validator controls of ASP.net as they can handle it. However: As I only can have one form-tag (that runs server-side) on a page, and nested forms dont work either, it occurs that I cannot sumit (or call a module's member function) without having filled out the fields of *both* modules. This isn't the expected behaviour, as the the user should be able to use one module independently of the other. How can I trick the validators into that? :confused: -Chris