如何在Application_Start事件中向网页添加控件

发布于 2024-12-14 05:58:16 字数 53 浏览 0 评论 0原文

是否可以向 Application_Start 项目中的页面添加控件?

谢谢

Is it possible to add control to a page in Application_Start Project?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满意归宿 2024-12-21 05:58:17

不,这是不可能的。在应用程序生命周期的这个阶段不存在表单。在 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.

是伱的 2024-12-21 05:58:17

您需要在页面顶部添加类似这样的内容

<%@ Register TagPrefix="uc1" TagName="links" Src="WebUserControl1.ascx" %> 

You need to add at the top of the page as something like this

<%@ Register TagPrefix="uc1" TagName="links" Src="WebUserControl1.ascx" %> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文