在 MVC3 中重用 asp.net 自定义服务器控件
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.Net MVC 通过精简的
HttpContextWrapper
类使用相同的HttpContext
类。但是,大多数 ASP.Net 服务器控件无法在 MVC 中工作。
ASP.Net MVC uses the same
HttpContext
class, through the thinHttpContextWrapper
class.However, most ASP.Net server controls will not work in MVC.