在经典 ASP.Net 项目中使用 ASP.Net MVC UI Helpers
只是想知道是否有人知道通常是否可以在经典 ASP.Net 项目中使用 MVC UI 帮助程序。显然,您必须注意不要使用表单助手等。但是我有一些为 MVC 构建的助手,并且想知道是否可以在我的旧项目中使用它们。
我知道我需要引用 MVC dll 等,但我试图思考这样做是否存在任何陷阱(即页面生命周期搞砸了事情)或者您不应该这样做的任何主要原因。我的想法是,asp.net 控件在 asp.net 中工作(有一些限制),那么它是否也可以反过来工作。
干杯 安东尼
Just wondering if anyone know if in general you can use the MVC UI helpers in a classic ASP.Net project. Obviously you would have to be mindful not to you the form helper, etc. But I have some helpers that I have built for MVC and wondering if there is anyway I can use them as is in my older project.
I know I would need to reference the MVC dll's etc, but I'm trying to think is there any traps with doing this (i.e. the page life-cycle screwing things up) or any major reasons why you shouldn't do this... My thinking is that asp.net controls work in asp.net (with some restrictions), so does it work the other way round.
Cheers
Anthony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Scott Hanselman 的 插件混合文章 提供了对集成 ASP 过程的很好的处理.NET 和 ASP.NET MVC 页面并排。
Scott Hanselman's Plug-in Hybrids article provides a pretty good treatment of the process of integrating ASP.NET and ASP.NET MVC pages side-by-side.
Pro ASP.NET MVC Framework 的最后一章详细介绍了使用 MVC 和 WebForms 端在旁边。
我可以直接告诉您,您必须使用 Web 应用程序项目类型,而不是网站。
The last chapter of Pro ASP.NET MVC Framework details using MVC and WebForms side by side.
Off the top of my head, I can tell you that you must be using the Web Application project type, not Web Site.