deletion of aspx file from the project

  • Thread starter Thread starter rinkal brahmbhatt
  • Start date Start date
R

rinkal brahmbhatt

what if i delete an aspx file from my project if i had compiled the
project once....will that project run without any error.....or will i
need the aspx file after compilation
 
if no page will redirect the user to the ASPX page and your other files,
then there should be no problem.

if other files will call the static methods of the file, then delete the
aspx.cs file will result in error if you need to recompile it later...

Note that aspx file is the UI and aspx.cs is the codebehind for normal
VS.NET configuration, if both of them are placed in the same file, the
comments for aspx.cs also applys for the aspx file.
 
Back
Top