Visual Studio isn't behaving normally when I make a change in an aspx file. It makes changes to the designer.cs file. These changes mean that I cannot access any of my controls by their ID in my code behind file.
When I revert the changes (using SVN), that have been made behind my back, in the designer.cs file, my build succeeds again and everything works fine.
I see that Visual Studio deletes a lot of lines in the designer file.
I've read some similar issues on the web but I can't find a good solution for this.
Has anyone of you experienced the same problems with Visual Studio and can help me solving this?
Update: I found that Visual Studio adds this line to the designer.cs:
protected global::System.Web.UI.WebControls.UpdatePanel UpdatePanel1;
But this should be:
protected global::System.Web.UI.UpdatePanel UpdatePanel1;
When I make this change manually in the designer.cs file, it works. But every time I make a change to the aspx file, Visual Studio creates again the wrong reference.