您可以使用 .NET 2.0 使用 ASP.NET MVC 框架制作一个网站吗?

发布于 2024-07-06 09:41:47 字数 103 浏览 6 评论 0原文

是否可以使用 .NET 2.0 制作带有 ASP.NET MVC 框架的网站? 我仅限于使用.NET 2.0(我们使用VS 2008,但我们必须使用2.0框架)并且我真的很想尝试MVC框架。

Is it possible to make a site with ASP.NET MVC Framework using .NET 2.0? I am limited to using .NET 2.0 (we use VS 2008, but we have to use the 2.0 Framework) and I really want to try out the MVC Framework.

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

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

发布评论

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

评论(2

弥枳 2024-07-13 09:41:47

Scott Hanselman 在他的博客中描述了一种使其工作的方法,但有一些注意事项:

部署 ASP.NET ASP.NET 2.0 上的 MVC

Scott Hanselman described a way to make it work, with some caveats, in his blog:

Deploying ASP.NET MVC on ASP.NET 2.0

倾城泪 2024-07-13 09:41:47

它可以使用 Visual Studio 2008 完成,但可能会引起头痛...

  • 创建 ASP.NET MVC Web 应用程序
  • 将项目目标框架设置为 2.0
    在项目属性中
  • 添加对 System.Web.MVC 的引用(单击警告消息)
  • 添加您可能需要的任何其他引用(System.Web.Routing、System.Web.Abstractions),再次单击任何警告消息
  • 开始编码!
  • 并非您尝试的所有内容都会起作用,如果您在部署时看到这样的错误,则意味着 2.0 框架不支持您所做的一切...
    • “找不到类型或命名空间名称“var”(是否缺少 using 指令或程序集引用?)”
  • 配置您的 IIS 以支持MVC 路由和 扩展
  • 将“C:\windows\ assembly\GAC_MSIL\System.Core”从 .NET 3.5 开发框架复制到运行 .NET 2.0 SP1 的 IIS 服务器的 /bin 文件夹。

其中大部分内容可以在 Scott Hanselman 的博客 上找到更多详细信息

It can be done using Visual Studio 2008, but it can cause headaches...

  • Create an ASP.NET MVC Web Application
  • Set Project Target Framework to 2.0
    in Project Properties
  • Add a references to System.Web.MVC (click through warning messages)
  • Add any additional references you may need (System.Web.Routing, System.Web.Abstractions) again clicking through any warning messages
  • Start coding!
  • Not everything you try will work, if you see errors like this on deployment it means that whatever you are doing isn't supported by the 2.0 framework...
    • "The type or namespace name 'var' could not be found (are you missing a using directive or an assembly reference?)"
  • Configure your IIS to support MVC Routes and extensions
  • Copy "C:\windows\assembly\GAC_MSIL\System.Core" from the .NET 3.5 development framework to the /bin folder of the IIS Server running .NET 2.0 SP1.

Much of this can be found in a lot more detail on Scott Hanselman's blog

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