Click here to Skip to main content
Licence 
First Posted 19 Jan 2007
Views 14,623
Bookmarked 15 times

Multiple form submittion with validator control in ASP.Net

By | 19 Jan 2007 | Article
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

About the Author

Nimit Patel

Web Developer

Canada Canada

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralIt's possible to have multiple webforms/page PinmemberJan Seda10:25 20 Jan '07  
GeneralRe: It's possible to have multiple webforms/page PinmemberSergey Rybalkin4:19 21 Jan '07  
GeneralRe: It's possible to have multiple webforms/page PinmemberJan Seda6:24 21 Jan '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 20 Jan 2007
Article Copyright 2007 by Nimit Patel
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid