Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
_PageStart.cshtml 与 _AppStart.cshtml 有什么区别?我可以互换使用它们吗?
_AppStart.cshtml 在应用程序首次启动时执行一次。它是设置全局变量或配置电子邮件等的地方。每次请求同级或更低级别文件夹中的页面时都会执行_PageStart.cshtml。它是执行每个请求处理的地方,例如设置布局页面或拒绝未经身份验证的用户访问文件夹。
请参阅 Microsoft 网页站点上的这篇文章。
由于它们在应用程序生命周期中的不同时间执行,因此很难看出它们如何可以互换使用,无论您的意思是什么。