Multiple Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello everybody
Is it possible, to add more than one form on a asp-page?

Or is there a other way to have different regions for field validation and there 'causes Validation'-Buttons on one page?

Thanks in advance
Seb
 
Hi Seb
The validators that come with .net don't do this
I've developed a set of validator controls that allow you to group them into
logical forms.

e.g.
<extendedvalidators:RequiredFieldValidator id="RequiredFieldValidator2"
runat="server" ErrorMessage="type something" ControlToValidate="TextBox1"
group="1"></extendedvalidators:RequiredFieldValidator>

In the future I'd like to sell them (after a bit more testing)...
If you like to try them mail me at (e-mail address removed) and I'll send
you the dll
Cheers
Joe Gass
MCSD.net

Seb said:
Hello everybody
Is it possible, to add more than one form on a asp-page?

Or is there a other way to have different regions for field validation and
there 'causes Validation'-Buttons on one page?
 
Back
Top