up vote 58 down vote favorite
11
share [g+] share [fb]

Sometimes when I'm editing page or control the .designer files stop being updated with the new controls I'm putting on the page. I'm not sure what's causing this to happen, but I'm wondering if there's any way of forcing Visual Studio to regenerate the .designer file. I'm using Visual Studio 2008

EDIT: Sorry I should have noted I've already tried:

  • Closing & re-opening all the files & Visual Studio
  • Making a change to a runat="server" control on the page
  • Deleting & re-adding the page directive
link|improve this question

feedback

26 Answers

If you open the .aspx file and switch between design view and html view and back it will prompt VS to check the controls and add any that are missing to the designer file.

Also, you can try to right click on the as(c/p)x and select "Convert to Web Application". When this is done you should see that you now have a *.Designer.cs file available and your controls within the Design HTML will be available for your control.

PS: This should not be done in debug mode, as not everything is "recompiled" when debugging.

Some people have also reported success by deleting the .designer.cs file and then recreate an empty file with the same name.

link|improve this answer
This only worked for me after closing down every instance (even those with totally different solutions) of VS2008 – Kevin Feb 18 '10 at 17:50
this worked for me +1 – Naeem Sarfraz Jun 4 '10 at 13:28
2  
I found that changing from debug mode to release mode dig the trick for me, Thanks – Chris Jun 22 '10 at 16:06
This worked for me. Greaaaaate thread anyway – Sergej Andrejev Aug 10 '10 at 18:24
"Convert to Web Application" was just what I needed! Thanks. – Chad yesterday
feedback
up vote 24 down vote accepted

Well I found a solution that works, though I don't really like it. I had to delete the .designer.cs file then recreate an empty file with the same name. When I went back in and saved the aspx file again, the designer file was re-generated.

Dodgy!

link|improve this answer
This just worked for me too. Not ideal. No idea why the original desginer file stopped updating properly. – IainMH Oct 29 '08 at 10:16
3  
This did not work for me. Now I have an empty file and all of the code behind does not work!!! Rebooting... – Dining Philanderer Mar 19 '09 at 20:25
2  
This worked for me. I made sure to delete the original, create a new designer.cs file with the same name, close the new file, modify the .as(p/c)x file slightly to force a save, then it was all good. – TJB Apr 15 '09 at 21:43
1  
Thank you thank you thank you ... I was going crazy with this problem in my project - wasted a whole day on it before finding your answer! – Shaul Aug 2 '09 at 17:08
6  
if you have a view compile error, it won't come back. Generally thats why it stops regening in the first place. You need to turn on view compile to see it, which is not straight forward. – DevelopingChris Feb 11 '10 at 13:53
show 2 more comments
feedback

There is another possibility: You may have an error in your .aspx file that does not allow Visual Studio to regenerate the designer.

If you switch to Design View, it will show the control as unable to be rendered. Fixing the control (in my case it was an extra quote in the properties) and recompiling should regenerate the designer.

link|improve this answer
1  
+1 thank you - that helped me! – Shaul Aug 4 '09 at 9:34
feedback

I use the following method which works everytime:

  • Select all of the code-in-front (html markup etc) in the editor of the aspx/ascx file.
  • Cut.
  • Save.
  • Paste.
  • Save.

Recompile.

link|improve this answer
I think just deleting a single control and re-adding it has the same effect. – chris Aug 3 '09 at 0:41
feedback

the only way I know is to delete the designer file, and do a convert to web app. However when you do this, it usually pops up with the error, as to why it didn't auto-regen in the first place, its usually a control ref that isn't declared in the head of the page.

link|improve this answer
This worked perfectly. Should be the accepted answer imho – Garry Harthill Feb 10 '10 at 16:47
Doesn't work in VS2008 – Carlos Rendon Mar 8 '10 at 22:14
Sorry it didn't work, its worked in VS 2008 for me since I started using it. Is there a syntax error in your page? You should get a dialogue box that tells you what to fix to finish it working. – DevelopingChris Mar 9 '10 at 21:48
This worked for me. The code-behind class had an int Id property which compiled just fine in C# since it's case sensitive. But ID="ControlName" in the aspx page was trying to do Id = "ControlName". Convert to Web App said something like ControlName cannot be converted to Int32. – Nelson Rothermel Dec 13 '10 at 17:43
feedback

My experience is that if you want to do like in this article, like stated above.

Your markup file (aspx/ascx) has to include the CodeBehind="MyPage.aspx.cs" attribute or else it won´t work. I blogged about it here.

link|improve this answer
1  
+1 Fixed it for me. My page was missing this attribute – Ralph Lavelle Apr 27 '10 at 11:38
feedback

I recently saw that I was having the same problem. Visual Studio 2010 was refusing to update the designer file.

As it turns out, VS doesn't modify the designer file for a page that uses CodeFile (run off of pages) instead of CodeBehind (DLL). This is true no matter how many times you close VS, reload the project, re-create the control(s), or modify a file. Nothing would prompt VS to regenerate the designer. It's as if it doesn't create the designer file for CodeFile pages but does require it to be there.

I changed it to CodeBehind and saved the page. The designer file updated immediately. Then I just changed it back and everything was still golden. This behavior seems to be new with VS 2010 / .NET 4.0 as VS 2008 by default didn't suffer from this.

It's this part:

<%@ Page Language="vb" AutoEventWireup="false" CodeFile="YourPage.aspx.vb" Inherits="YourPageClass" %>

Change CodeFile to CodeBehind, save, and then revert.

link|improve this answer
This solution worked for me when nothing else would. Very strange that it started suddenly. – Tridus May 6 '11 at 17:22
1  
despite the number of up votes this is [IHO] correct answer ... – krul Aug 5 '11 at 15:05
Same experience for us with VS2010. – Spiralis Sep 22 '11 at 8:27
Late to this thread. None of the answers described above force the controls to be listed in the *.aspx.designer.cs. I was hoping this one would, but it still does not force the controls to be declared in the *.aspx.designer.cs file. I'm using VS 2010 Pro SP1. I'm trying to get this to work with any of the default files that the IDE generates in /Account like ChangePassword.aspx. Thanks. – paparush Oct 31 '11 at 17:12
feedback

(The following comes from experience with VS2005.)

If you edit an ASPX page while debugging, then the codebehind doesn't get updated with the new classes. So, you have to stop debugging, trivially edit the ASPX page (like add a button or something), then click Design View, then delete the button. Then, your designer files should be updated.

If you are having a different issue with VS2008, then I can't help.

link|improve this answer
Ran into this with VS.Net 2010... had to do exactly this... Thanks @EndangeredMassa for the tip... I used to go through this in the VS.Net 2002/2003 days as well... Wish I knew this then ;) – Richard B Jun 2 '11 at 12:47
feedback

Here is wat i experienced , Select the website folder right click in the Solution Explorer, select Convert to Web application for all the aspx file a designer file will get generated.

Sameer

link|improve this answer
feedback

Delete the designer.cs file and then right click on the .aspx file and choose "Convert To Web Application". If there is a problem with your control declarations, such as a tag not being well-formed, you will get an error message and you will need to correct the malformed tag before visual studio can successfully re-generate your designer file.

In my case, at this point, I discovered that the problem was that I had declared a button control that that was not inside of a form tag with a runat="server" attribute.

link|improve this answer
feedback

I often found that copy/pasting caused this behaviour for me. Most cases can be solved by editing the ID of a server control (just add a character, then delete it).

Also remember that control inside things like Repeaters aren't visible in the designer file.

And yes, there are cases where you need to do the delete-the-file magic listed above - but the name-change solution will work most of the time.

link|improve this answer
feedback
  • Select-all in the designer file and delete everything in the file, leaving it blank and then save
  • Select-all in the ASPX/ASCX file and cut everything and then re-paste it back
  • The designer file should have regenerated the code
link|improve this answer
1  
This did not work for me. – Zack Peterson Jan 26 '09 at 16:21
feedback
  1. replace your custom tag with a invalid tag name. Save it
  2. restore the invalid tag name back to custom tag name. Save it. Then you will be prompted to checkout the *.designer.cs files(or silently modify the designer.cs) and produce correct variable of custom tag control.
link|improve this answer
feedback

I had this problem and for me, I had a space in one of my ID values for one of my controls. I took the space out and the designer file regenerated itself.

link|improve this answer
feedback

This is a bug in the IDE; I've seen it since VS 2003. THe solution is simple though.

Save your files. Completely exit the IDE (make sure the process stops, task mgr.)

Reopen the solution, dirty the markup, save. Fixed.

link|improve this answer
feedback

In my case I was just missing a register TagPrefix at the top. Somehow the previous dev worked without having this in there?

link|improve this answer
feedback

I have had this issue before. I usually just hit enter to add a line and then wait for the plus/minus to show on the html page and the designer should add what you need. I have also had to close the project and reopen it to get it to work.

link|improve this answer
feedback

I had two problems... outdated AJAXControlkit - deleted the old dll, removed old controls from toolbox, downloaded new version, loaded toolbox, and dragged and dropped new controls on the page (see http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Studio_.NET_2005/Q_24591597.html)

Also had misspelling in my label control (had used 'class' instead of 'cssclass').

Ta

link|improve this answer
feedback

I had a similar problem with a user control which contained other user controls. Dirtying the markup didn't help. Deleting the ascx.designer.cs, then creating a new empty one worked a treat. Thanks.

link|improve this answer
feedback

I've had this problem a lot, and just did again. I tried fixing it using these suggestions, and nothing worked. I finally found that I had the 'Title' attribute in the page header twice(I added to the end, not realizing that VS added a blank Title="" to the beginning)-- removing the extra attribute caused VS2008 to re-generate the designer file... I hope VS2010 fixes this problem, letting us know why the designer file generation isn't happening...

-- Derek

link|improve this answer
feedback

When you are in design view, right click on the screen and hit refresh.

link|improve this answer
feedback

Apart from all the good answers already given, I'd like to add to @johan-leino's great answer. In my case, for some arbitrary reason, the CodeBehind attribute was omitted from the @Page directive/.aspx file. Likewise, it might be worthwhile to check the CodeFile attribute for @Control directives/.ascx files (obviously in conjunction with an Inherits attribute in both cases).

Depending on the exact scenario and reason required to 'force' a regenerate of .designer.cs, one could also try to format the document (potentially indicating a parsing error) before (quick) saving (regardless whether there were any changes or not) and check the Error List for warnings.

link|improve this answer
feedback

In my case, it was fixed when I added a CodeBehind to the @Page section.

link|improve this answer
feedback

I know I'm late to the party, but I thought if after trying the accepted answer by @Glenn Slaven and the current highest rated answer by @Espo you are still out of luck, the following might save some people out there some trouble.

User Controls (.ascx) are what constantly stop auto-generating for me. I've found that in the instances where I use other User Control(s) in my User Control, it breaks the auto-generation.

The solution I came up with was to use the trick we all know of for getting IntelliSense to work in User Controls or Skin files when using CSS classes from external sources. Instead of just referencing the CSS file, now I Register the other User Control(s) that I need. It looks something like this:

<% If False Then %>
<%@ Register TagPrefix="uc" TagName="Title" Src="~/controls/title.ascx" %>
<link rel="stylesheet" type="text/css" href="../css/common.css"  />
<% End If %>

After that, I Save the file, which prompts the auto-generation to regenerate, and I'm back up and running.

link|improve this answer
feedback

I had the problem that my new controls would not generate in the designer file when declared in the .ascx file. The problem was that i declared them in the code behind also. So deleting the declaration in the code behind solved my problem.

link|improve this answer
feedback

If you are like me and you add old .ASPX files to a more recent project. You are probably going to forget some of the controls used on the page.

If so, first thing, if there are multiple files you are installing; Fix one at a time first.

When you compile, fix errors generated. They will probably be the same errors in all the files.

Next, if you have Designer files, delete all of the inserted - designer files. Next, make sure there are not any other errors when you compile, other than the designer files.

Finally right click your web project and click on Convert to Web Application. This will insert the designer files you need.

These are the absolute best steps to fix the issues.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.