vote up 18 vote down star
1

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
flag

78% accept rate

11 Answers

vote up 0 vote down

I have the same problem! I have tried all!! But the .designer file wasn't created! I have added CodeBehind="MacchinaNew.ascx.vb" But nothing!

FP

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
I think just deleting a single control and re-adding it has the same effect. – chris Aug 3 at 0:41
vote up 1 vote down
  • 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|flag
This did not work for me. – Zack Peterson Jan 26 at 16:21
vote up 3 vote down

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|flag
+1 thank you - that helped me! – Shaul Aug 4 at 9:34
vote up 1 vote down

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|flag
vote up 7 vote down check

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|flag
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
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 at 20:25
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 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 at 17:08
vote up 1 vote down

(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|flag
vote up 6 vote down

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, according to this blog, 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.

alt text

link|flag

Your Answer

Get an OpenID
or

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