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)
source
share