Visual Studio 2005 Designer not Adding controls to the aspx.Designer.cs - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:43:14Zhttp://stackoverflow.com/feeds/question/187881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/187881/visual-studio-2005-designer-not-adding-controls-to-the-aspx-designer-cs4Visual Studio 2005 Designer not Adding controls to the aspx.Designer.csforcripesake2008-10-09T15:41:53Z2009-09-23T15:06:45Z
<p>I'm not a fan of the Designer, I prefer to code straight to the ASPX page. However, since a reformat (and leading up to the reformat), the designer.cs files have not been updating correctly when manually coding to the .aspx file. This means my code behinds are not recognizing new controls and throwing compiler err's.</p>
<p>Does anyone know how to <strong><em>Prevent</em></strong> this or force the designer.cs file to recompile after manually coding the aspx file? I know I can type the controls manually into the designer file, but this is time consuming and well...obnoxious when creating larger aspx pages.</p>
<p>Edit</p>
<p>WebDude's answer <em>used to</em> work, but switching to design view no longer solves the problem with any degree of consistancy...any more ideas?</p>
http://stackoverflow.com/questions/187881/visual-studio-2005-designer-not-adding-controls-to-the-aspx-designer-cs/187925#1879253Answer by WebDude for Visual Studio 2005 Designer not Adding controls to the aspx.Designer.csWebDude2008-10-09T15:53:49Z2008-10-09T15:53:49Z<p>This happened to me when I installed the sp1 in visual studio 2008.
The way i got my code behind to recognise my controls was by viewing the aspx page in designer mode, then changing back to code view.</p>
<p>This seemed to give visual studio the slap it needed to start automatically populating my designers.</p>
<p>I realise your problem is in Vis 2005, but this could help you</p>
<p>Good Luck!</p>
http://stackoverflow.com/questions/187881/visual-studio-2005-designer-not-adding-controls-to-the-aspx-designer-cs/188071#1880710Answer by prudan for Visual Studio 2005 Designer not Adding controls to the aspx.Designer.csprudan2008-10-09T16:29:13Z2008-10-09T16:29:13Z<p>I've found closing and reopening the page (both the HTML and code behind) forces it to repopulate everything.</p>
http://stackoverflow.com/questions/187881/visual-studio-2005-designer-not-adding-controls-to-the-aspx-designer-cs/1466607#14666072Answer by Bhavesh for Visual Studio 2005 Designer not Adding controls to the aspx.Designer.csBhavesh2009-09-23T15:06:45Z2009-09-23T15:06:45Z<p>Simple solution,</p>
<p>Delete the designer.cs page, right click on the aspx/ascx page and choose Convert to Web Application.</p>
<p>and you are all set!!!</p>
<p>Bhavesh</p>