Get the ASP.NET form name - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T16:06:01Zhttp://stackoverflow.com/feeds/question/245456http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245456/get-the-asp-net-form-name0Get the ASP.NET form nameRyan Smith2008-10-29T01:09:14Z2008-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#2454892Answer by Mohamed Faramawi for Get the ASP.NET form nameMohamed Faramawi2008-10-29T01:27:08Z2008-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#2454912Answer by FlySwat for Get the ASP.NET form nameFlySwat2008-10-29T01:28:21Z2008-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#2455000Answer by Marcel81 for Get the ASP.NET form nameMarcel812008-10-29T01:31:09Z2008-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#2455061Answer by Andrew Theken for Get the ASP.NET form nameAndrew Theken2008-10-29T01:32:18Z2008-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><script type="text/javascript">
var formname = '<%=this.Page.Form.Name %>';
</script>
</code></pre>