博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[转]]将 ASP.NET MVC3 Razor 项目部署到虚拟主机中
阅读量:5101 次
发布时间:2019-06-13

本文共 1264 字,大约阅读时间需要 4 分钟。

原链接:

 

国内很多网站空间都只支持.NET 2.0 和 .NET 3.0 3.5,很少有空间商支持.NET 4的,即使有个别支持.NET 4,但是不支持MVC的默认路由访问形式。

 

Go Daddy 的主机支持,并且费用很低,系统为 Win 2008 R2 64位,10GB网站空间,网站并发最便宜的也支持100个,PHP支持5.2和5.3,.NET支持 ASP.NET v1.0/2.0/3.0/3.5 和 ASP.NET v4.0,默认为.NET 4,并且默认已经支持MVC 2,如果要支持MVC3,只需要在发布站点的时候,多复制几个DLL文件到BIN文件夹就可以了,DLL清单如下:

 

System.Web.Abstractions.dll

System.Web.Helpers.dll

System.Web.Mvc.dll 
System.Web.Razor.dll
System.Web.Routing.dll
System.Web.WebPages.dll
System.Web.WebPages.Razor.dll

System.Web.WebPages.Deployment.dll 

 

DLL打包下载: 

 

否则会报如下:

 

页面显示错误

Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

 

Could not load file or assembly 'Microsoft.Web.Infrastructure ...

Could not load file or assembly '

System.Web.Helpers

 ...

 

Could not load file or assembly '

System.Web.Mvc

 ...

Could not load file or assembly '

System.Web.Razor

 ...

Could not load file or assembly '

System.Web.Routing
 

 ...

Could not load file or assembly '

System.Web.WebPages

 ...

Could not load file or assembly '

System.Web.WebPages.Razor

 ...

Could not load file or assembly '

System.Web.WebPages.Deployment

 ...

 

 Go Daddy 你值得拥有!

转载于:https://www.cnblogs.com/scgw/p/3273610.html

你可能感兴趣的文章
Sql Server 中由数字转换为指定长度的字符串
查看>>
win7下把电脑设置成wlan热
查看>>
Java 多态 虚方法
查看>>
jquery.validate插件在booststarp中的运用
查看>>
java常用的包
查看>>
PHP批量覆盖文件并执行cmd命令脚本
查看>>
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
支持向量机——内核
查看>>
万能的SQLHelper帮助类
查看>>
uboot分析:uboot的启动过程分析
查看>>
tmux的简单快捷键
查看>>
springboot笔记04——读取配置文件+使用slf4j日志
查看>>
[Swift]LeetCode653. 两数之和 IV - 输入 BST | Two Sum IV - Input is a BST
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
微信小程序的wxml文件和wxss文件在webstrom的支持
查看>>
Html5 离线页面缓存
查看>>
[php]在PHP中读取和写入WORD文档的代码
查看>>
WCF傻瓜模式写程序
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Java Web学习总结(13)Listener监听器
查看>>