I am quite new to .NET development and I am just wondering how does it work?
My undermentioned points are:
- While developing ASP.NET application, under the project we have files like:
- pagename.aspx
- pagename.aspx.cs
- pagename.asp.desiger.cs
- After adding certain functionality to
pagename.aspxpage, assuming I have the development required web application (this is not my concern, what is developed) - Now I'm going to deploy this application, I use web deployment MSI which creates the required files in the one folder called
folderdelopyed. - This folder contains the files required to support this application but interesting does not contain
pagename.aspx.csandpagename.aspx.designer.csfiles.
My question is if folderdelopyed does not contain .cs file, then how does it work to run the segment of code which I have written in this file called PageName.aspx.cs?