在 MVC3 中重用 asp.net 自定义服务器控件

发布于 2024-12-08 12:05:25 字数 227 浏览 1 评论 0原文

我有一个 asp.net 自定义服务器控件。我可以在 MVC3 中重用它吗?我现有的 asp.net 控件在很大程度上依赖于在 HttpContext 中存储信息。如果我能以某种方式使控件经历 MVC3 中的 asp.net 页面生命周期,那么也许我可以在 MVC3 中以最少的重写来处理其中一些信息。

有没有办法让 asp.net Httpcontext 与 MVC3 HttpContext 共存?

谢谢

I have an asp.net custom server control. Is there anyway I can reuse it in MVC3? My existing asp.net control relies quite a bit on storing the information in HttpContext. If I can somehow make the control go through the asp.net page lifecycle in MVC3, then maybe I can work with some of this information with minimal rewrite in MVC3.

Is there a way I can make the asp.net Httpcontext coexist with the MVC3 HttpContext?

Thanks

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

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

发布评论

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

评论(1

早乙女 2024-12-15 12:05:25

ASP.Net MVC 通过精简的 HttpContextWrapper 类使用相同的 HttpContext 类。

但是,大多数 ASP.Net 服务器控件无法在 MVC 中工作。

ASP.Net MVC uses the same HttpContext class, through the thin HttpContextWrapper class.

However, most ASP.Net server controls will not work in MVC.

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