Why is there no design.cs for an ASP.NET site?

If we create an ASP.NET web application in Visual Studio, we will see that each .aspx file will have an associated automatically generated .aspx.designer.cs file. But in the case of ASP.NET WebSite, each aspx file has only a .aspx.cs file of code only.

My question is why does the ASP.NET website not have an automatically generated .cs constructor file.

What is the purpose of an automatically generated constructor file in the case of a web application project? (I believe that no one is touching this designer file)

+4
source share
1 answer

why is there no .cs auto-generated file on the ASP.NET website?

VisualStudio . dll.

-?

, aspx aspx.cs , IntelliSense. , , aspx - .

, :

- ASP.NET - ASP.NET

aspx.designer.cs ?

+7

Source: https://habr.com/ru/post/1530580/


All Articles