Form Elements in ASP.NET Master Pages and Content Pages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:14:07Z http://stackoverflow.com/feeds/question/178396 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages 1 Form Elements in ASP.NET Master Pages and Content Pages Rob Cooper 2008-10-07T13:19:39Z 2008-12-28T08:29:47Z <p>OK, another road bump in my current project.</p> <p>I have never had form elements in <strong>both</strong> my master and content pages, I tend to have all the forms in the content where relevant.</p> <p>In the current project however, we have a page where they want both. <strong>A login form at the top right, and a questions form in the content.</strong></p> <p>Having tried to get this in, I have run in to the issue of ASP.NET moaning about the need for a single form element in a master page. TBH, I really dont get why this is a requirement on ASP.NET's part, but hey ho.</p> <p><strong>Does anyone know if/how I can get the master and content pages to contain form elements that work independantly?</strong></p> <p>If not, can you offer advice on how to proceed to get the desired look/functionality?</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178408#178408 -1 Answer by WebDude for Form Elements in ASP.NET Master Pages and Content Pages WebDude 2008-10-07T13:21:35Z 2008-10-07T13:21:35Z <p>no, you can only have one asp.net form per page. That has been the rule since 1.0</p> <p>They should both share the same form</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178428#178428 1 Answer by Dan Goldstein for Form Elements in ASP.NET Master Pages and Content Pages Dan Goldstein 2008-10-07T13:26:24Z 2008-10-07T13:26:24Z <p>You can only have one form on an ASP.NET page. One way to handle this is to put an event handler on the login button in the master page. The handler will validate the user and redirect to the same page on success (to correctly run the Page_Load handler, which is run before event handlers).</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178439#178439 3 Answer by Stephen Wrighton for Form Elements in ASP.NET Master Pages and Content Pages Stephen Wrighton 2008-10-07T13:28:29Z 2008-10-07T13:28:29Z <p>the form tag itself is in the MasterPage, as such, you can code any asp.net server controls onto the master page that you wish. And you can write up the processing logic for those server controls on the master page's code behind file. </p> <p>So, in your example, you can have the login controls on the upper right of the master page, and then have the authentication logic in the code page for the MASTER PAGE, not your content page.</p> <p>This allows you to have the login controls on every page, and maintain that processing, as well as maintain the content controls and their processing on their individual pages.</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178525#178525 1 Answer by John Rudy for Form Elements in ASP.NET Master Pages and Content Pages John Rudy 2008-10-07T13:49:43Z 2008-10-07T13:49:43Z <p>Everyone else has already mentioned that you can only have a single form element in a given ASP.NET page, and that it would be contained in the master page. So far, so good. But I don't think that helps you get fully where you want to be ... </p> <p>In your master pages, you've (I assume!) defined <code>asp:ContentPlaceHolder</code> controls. Your pages which use the master then have corresponding <code>asp:Content</code> tags. All your page content must go in these corresponding <code>asp:Content</code> tags.</p> <p>Once in that tag, they are part of the master page's form. The master page can respond to events from its own controls, and the pages themselves respond to events from their own controls, and you're set.</p> <p>If you need the page to interact with the master page, you can access it via the <code>Page.Master</code> property. To interact with any publicly-visible code (methods, properties, etc.) from the master page, you'd cast this property to the correct type, and access the publicly-visible code from there.</p> <p>That should get you where you need to be in this scenario. (It's worked for me on multiple sites!)</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/240608#240608 2 Answer by Rob Cooper for Form Elements in ASP.NET Master Pages and Content Pages Rob Cooper 2008-10-27T16:54:59Z 2008-10-27T17:07:54Z <p>Hi All,</p> <p>Thought I would review some of my outstanding questions and see if I can close some of them off.</p> <p>This one was an interesting one. I outright refused to believe you can only have one form on an ASP.NET page. This to me made no sense. I have seen plenty of webpages that have more than one form on a web page, <strong>why should an ASP.NET page be any different?</strong></p> <p>So, it got me thinking.</p> <h3>Why does a ASP.NET page <em>need</em> a form element?</h3> <p>ASP.NET pages try to emulate the WinForms environment, by provided state persistance through the PostBack model. This provides an element of state to a stateless environment. In order to do this, the runtime needs to be able to have the ability to maintain this state within each "form". It does this by posting back data to itself. It's important to note that:</p> <ul> <li>There is nothing really fancy about a PostBack.</li> <li>It uses a HTTP form and POST, the same as any other form, from any other stack.</li> <li>Just because it looks like it might be doing something special, its not, all that happens is it POST's back with some info about what caused it, so you can do things like handle client-side events, in server-side code.</li> </ul> <h3>So why only one?</h3> <p>This to me was the million pound question (I am British). I understand that ASP.NET needs this, especially if you are using ASP.NET server controls, but <strong>why the hell can't I make my own additional forms?</strong></p> <p>So, I thought screw it, just make your own form!</p> <p>And I did. I added a bog-standard, simple form with a submit action of "#". This then performs a POST to the current page, with the Form data for the given form in the request.</p> <p>Guess what? It all worked fine. So I ended up with:</p> <ul> <li>A master page, with a HTML form in</li> <li>This form posts back to the current page (basically the page using the master).</li> <li>In the Page_Load code-behind for the master, I then added code to check the request to see what data was passed in the request. If it contains data (say a hidden field) then I know the post was sourced from the Form on the master page, if not, then it is most liekly a PostBack from content, and can be ignored.</li> <li>I then surrounded the Content tags with <code>&lt;form runat="server" id="aspNetForm"...&gt; &lt;/form&gt;</code> tags. This meant that all content pages automatically had a form to work with.</li> </ul> <p>This provided me with a relatively simple, clean solution to my problem. My login form works fine in tandem with all the content forms created, some of which are complex forms, others use lots of server controls and many PostBacks, and so on.</p> <p>I hope this helps others.</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/240699#240699 1 Answer by Peter for Form Elements in ASP.NET Master Pages and Content Pages Peter 2008-10-27T17:17:51Z 2008-10-27T17:17:51Z <p>Rob,</p> <p>Interesting solution. I don't see any problem with what you are doing. The problem some may encounter however, is if they try to do this with 2 server forms. There's no rule in ASP.NET that you can't have more than 1 HTML form on a page, just that you can't have more than one "runat='server'" form on the page. Obviously you've found a pretty easy way of meeting your needs. </p> <p>I've found that for the most part dealing with a single form is not a problem because the ASP.NET framework basically separates everything for us with naming containers. But in your initial post comment you hit on the important factor that was absent yet critical to the essence of the original question: enter key behavior. That always throws a monkey wrench into the works.</p> <p>If you were to use a standard "all encompassing" server form, couldn't you capture the right action using a textbox text changed event? Of course, if the user changed both values before hitting enter on either you would get strange behavior. And I think the core problem with the enter key is that once you have more than one submit input on an HTML form, hitting ENTER in a textbox doesn't do anything. Only when there is a single INPUT element does the enter key cause one to be "clicked".</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/304946#304946 0 Answer by Kessa for Form Elements in ASP.NET Master Pages and Content Pages Kessa 2008-11-20T10:55:52Z 2008-11-20T10:55:52Z <p>Out of interest, I'm new to .Net and the idea of just having 1 form surrounding all of the content concerns me a little from an accessibility point of view as potentially anyone using a screenreader won't be able to access <em>any</em> of the content contained within the form without first having to swicth out of forms mode (which in some readers, I believe they can only do once it's been through the "form" once)</p> <p>How does .Net get around this in order to comply with the new legal accessibility standards?</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/304984#304984 0 Answer by Steve Davies for Form Elements in ASP.NET Master Pages and Content Pages Steve Davies 2008-11-20T11:12:36Z 2008-11-20T11:12:36Z <p>I solved the "clicking the return key in the login sub-form causes the main form to submit" problem in my current project by embedding an iframe into the master page. The iframe pointed to the login.aspx page which authenticated the user.</p> <pre><code>&lt;iframe id="login" src="login.aspx" frameborder="0" enableviewstate="false" scrolling="no" runat="server"&gt;&lt;/iframe&gt; </code></pre> <p>(form some reason I needed the closing /iframe tag otherwise design view got confused)</p> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/395974#395974 0 Answer by tariq for Form Elements in ASP.NET Master Pages and Content Pages tariq 2008-12-28T08:29:47Z 2008-12-28T08:29:47Z <p><hr /></p> <blockquote> <p><code>[hala][1]</code></p> </blockquote> <p><hr /></p>