如何在Application_Start事件中向网页添加控件
是否可以向 Application_Start 项目中的页面添加控件?
谢谢
Is it possible to add control to a page in Application_Start Project?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的。在应用程序生命周期的这个阶段不存在表单。在 IIS 集成模式下,您甚至无法访问 HttpContext 对象,例如请求、响应、会话……因此,谈论 Application_Start 中的控件和表单根本没有任何意义。
No, it is not possible. No form exist at this stage of the application lifecycle. And in IIS Integrated mode you don't even have access to HttpContext objects such as Request, Response, Session, ... So talking about controls and forms in Application_Start simply doesn't make any sense.
您需要在页面顶部添加类似这样的内容
You need to add at the top of the page as something like this