asp.net - set master page form ID dynamically - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T16:15:19Zhttp://stackoverflow.com/feeds/question/739254http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/739254/asp-net-set-master-page-form-id-dynamically0asp.net - set master page form ID dynamicallypearcewg2009-04-11T00:36:12Z2009-06-04T03:00:03Z
<p>I am working on a site which uses master pages (no big deal), and has a form in the master page.</p>
<p>Currently, the form name in the rendered content is always "aspnetform".</p>
<p>I need to change some of the pages that use this master page, and I need to set the form name to something specific for that page (for SEO reasons).</p>
<p>Is there a simple way to do this, in the pages that use the master page?</p>
<p>NOTE: I'm not changing all of the pages that use the master, so the master page really should not change; no rearchitecture.</p>
http://stackoverflow.com/questions/739254/asp-net-set-master-page-form-id-dynamically/739300#7393000Answer by Cory Larson for asp.net - set master page form ID dynamicallyCory Larson2009-04-11T01:11:21Z2009-04-11T01:11:21Z<p><a href="http://forums.asp.net/p/883974/929349.aspx" rel="nofollow">This post</a> may help you out, though it seems that there's troubles with Designer mode with this solution.</p>
http://stackoverflow.com/questions/739254/asp-net-set-master-page-form-id-dynamically/739354#7393540Answer by pearcewg for asp.net - set master page form ID dynamicallypearcewg2009-04-11T01:46:02Z2009-04-11T01:46:02Z<p>After some consideration, I decided to remove the usage of the master file from the pages I needed to change.
Not ideal, but the easiest solution.</p>
<p>Research which led me to this solution:
<a href="http://forums.asp.net/t/899152.aspx" rel="nofollow">http://forums.asp.net/t/899152.aspx</a></p>