Get the ASP.NET form name - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:06:01Z http://stackoverflow.com/feeds/question/245456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245456/get-the-asp-net-form-name 0 Get the ASP.NET form name Ryan Smith 2008-10-29T01:09:14Z 2008-10-29T01:32:18Z <p>I'm looking for a way to get the name of the main HTML form so I can submit it from JavaScript.</p> <p>The reason I can just set the name of the form is because the JavaScript is on a User Control that could get added to many different sites with different form names.</p> <p>Thanks.</p> http://stackoverflow.com/questions/245456/get-the-asp-net-form-name/245489#245489 2 Answer by Mohamed Faramawi for Get the ASP.NET form name Mohamed Faramawi 2008-10-29T01:27:08Z 2008-10-29T01:27:08Z <p>I'm not sure , try "YourUserControl.Page.Form"</p> <p>But why do you need the form name, are you going to have more than one form on your .aspx page , if not, you can get the whole post back JS code for the control that will do the post back (submit) using "Page.ClientScript.GetPostBackEventReference()" and use it to set the "OnClick" attribute of whatever you will use to submit the page.</p> http://stackoverflow.com/questions/245456/get-the-asp-net-form-name/245491#245491 2 Answer by FlySwat for Get the ASP.NET form name FlySwat 2008-10-29T01:28:21Z 2008-10-29T01:28:21Z <p>ASP.NET pages can only have one form, so its safe to just do:</p> <pre><code> document.forms[0].submit(); </code></pre> http://stackoverflow.com/questions/245456/get-the-asp-net-form-name/245500#245500 0 Answer by Marcel81 for Get the ASP.NET form name Marcel81 2008-10-29T01:31:09Z 2008-10-29T01:31:09Z <p>you can't have more than one form control with runat="server" on an aspx page, so you cn use document.forms[0]</p> http://stackoverflow.com/questions/245456/get-the-asp-net-form-name/245506#245506 1 Answer by Andrew Theken for Get the ASP.NET form name Andrew Theken 2008-10-29T01:32:18Z 2008-10-29T01:32:18Z <p>I'm not totally sure that this will address what you're asking for, so please comment on it:</p> <p>In your script, when the User Control renders, you could have this placed in there. So long as script doesn't have a "runat" attribute, you should be good.</p> <pre><code>&lt;script type="text/javascript"&gt; var formname = '&lt;%=this.Page.Form.Name %&gt;'; &lt;/script&gt; </code></pre>