tags:

views:

21

answers:

1
+1  Q: 

ASP.NET form name

From what I understand, the id of the master on an ASP.NET page is "aspnetForm". I noticed today that for some reason in one of our pages it's now "form1". What would cause this change? Where should I look for the root cause of this naming change? We've got a lot of JavaScript variables that (sign) reference "aspnetForm" that are now broken.

+1  A: 

Are you sure that the form isn't explicitly named somewhere (e.g. id=form1)?

alex