ASP.NET Form - The form name\id changes to aspnetForm -


i have code:

<form name="addplace" id="addplace" action="addplace.aspx" class="niceform" method="post" runat="server"> 

that when try execute code instead:

<form name="aspnetform" method="post" action="addplace.aspx" id="aspnetform" class="niceform"> 

how come changes?

asp.net web forms takes control on form element; instance, if try change action, asp.net ignore , change back... why need specific id? why won't aspnetform work?

hth.


Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -