How to generate aspx.designer.cs in visual studio? [duplicate]

那年仲夏 提交于 2019-12-03 06:34:41

问题


My current aspx.designer.cs is not working properly, does anybody have any idea about regenerating aspx.designer.cs in solution explorer.


回答1:


Found here:

Within the Visual Studio:

1) Remove your aspx.designer.cs file

2) Right click on your aspx file and select "Convert to Web Application"
      or for VS2017
   click on your aspx file and then from Project menu, click "Convert to Web Application"

This should add the aspx.designer.cs back and up to date.

If you get an error saying:

"Generation of designer file failed: The method or operation is not implemented."

Try close Visual Studio and then reopen your project and do step number two again

And here:

Missing or corrupted designer file causes Visual studio (VS) to fail the build. This is because without designer file VS is unable to find the declarations of controls. Also most of the time controls are not added to designer.cs giving build errors.

To fix this issue, Below is the simplest solution I know:

  1. Delete your designer file if it is corrupted else start from step2.
  2. Go to your aspx markup (source) page and find below line of code. <%@ Page Language="C#" AutoEventWireup="false" CodeFile="SamplePage.aspx.cs" Inherits=" SamplePageClass" %>
  3. Now change CodeFile tag to CodeBehind.
  4. Save the file.
  5. Rebuild your project (This will create designer file for your page)
  6. Revert your change (Step3).


来源:https://stackoverflow.com/questions/20858121/how-to-generate-aspx-designer-cs-in-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!