Click here to Skip to main content
15,885,084 members
Articles / Web Development / ASP.NET
Article

Multiple form submittion with validator control in ASP.Net

Rate me:
Please Sign up or sign in to vote.
2.00/5 (2 votes)
19 Jan 2007 26.9K   173   14   3
This article provide you knowlege about how you can handle multiple form submittion in ASP.Net

Sample Image - Multiple_form_submittion.jpg

Introduction

In past I am not able to use two different section of form submit in ASP.Net 1.0 or 1.1using validation control. Now .Net Framework 2.0, it is possible to submit no of different section of form. On the other hand, in normal HTML we can place two or more form object for posting the data. Asp.Net can’t support the multiple form tag but there was different process to do same.

<asp:Label  ID="lblUsername"
            AssociatedControlID="txtUsername"
            Text="User Name : "
            Runat="server" />
<asp:TextBox    id="txtUsername"
                ValidationGroup="loginval"
                runat="server"/>
<asp:RequiredFieldValidator
            ID="validator1"
            runat="server"
            Display="Dynamic"
            ControlToValidate="txtUsername"
            ValidationGroup="loginval"
            Text="*(Required)" />


 <asp:Button id="btnSubmit"
            ValidationGroup="loginval"
            runat="server"
            text="Login"
            OnClick="onClick_btnSubmit" />


Above code show you how you will perform the submit function each section respective validation control. For separating each section by “ValidationGroup” keyword, you can seen here I used “ValidationGroup” same for the textfield, validator control and button on which I will display the message. You can create multiple submittion for no of group submittion of data distinctly.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Canada Canada
I am always dream to good cricket player of indian team. I am cricket loving guy. I had passed my post graduation from IGNOU at vadodara, Gujarat,India. Presently working on asp.net, C#, sql server, php, mysql.

Comments and Discussions

 
GeneralIt's possible to have multiple webforms/page Pin
Jan Seda20-Jan-07 10:25
professionalJan Seda20-Jan-07 10:25 
GeneralRe: It's possible to have multiple webforms/page Pin
Sergey Rybalkin21-Jan-07 4:19
Sergey Rybalkin21-Jan-07 4:19 
GeneralRe: It's possible to have multiple webforms/page Pin
Jan Seda21-Jan-07 6:24
professionalJan Seda21-Jan-07 6:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.