What is the difference between _PageStart.cshtml vs _AppStart.cshtml? Can I use them interchangeably?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

_AppStart.cshtml is executed once when the application first starts. It is the place for setting global variables, or configuring email etc. _PageStart.cshtml executes every time a page in the same or lower level folder is requested. It is the place for performing per-request processing, such as setting layout pages or denying access to a folder to unauthenticated users.

See this article at the Microsoft Web Pages site.

Since they execute at different times in the application's lifecycle, it's difficult to see how they can be used interchangeably, whatever you mean by that.

link|improve this answer
1  
I thought they're the same. Thanks! – dpp Jan 13 at 6:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.