在请求的生命周期中,何时执行 web.config标记执行?
在请求的生命周期中,web.config
标记何时执行?
When, during the life cycle of a Request, does a web.config <location path='The/Path'>
tag execute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
web.config 在应用程序启动时解析。 这将取决于位置标记中包含哪些元素以及它将如何影响每个单独的请求。
The web.config is parsed at application start. It will depend on what elements are contained within the location tag as to how it will affect each individual request.
应用程序设置已可在 OnInit() 方法中使用。 在 OnInit 之前需要它们吗?
app settings are already available on the OnInit() method. do you need them before OnInit?