If we create an ASP.NET Web Application in Visual Studio we can see that each and every .aspx file will have an associated auto generated .aspx.designer.cs file. But in case of an ASP.NET WebSite each aspx file has only a codebehind .aspx.cs file only.
My question is why ASP.NET Website does not have an auto generated designer .cs file?
What is the purpose of the auto generated designer file in case of the Web Application project? (I believe no one is touching that designer file)