MVC如何设置启动页
摘要:1、解决方案下的项目,右键,属性,Web,特定页,切换下其他选项以保存
阅读全文
posted @
2014-03-04 11:49
dm3344
阅读(595)
推荐(0) 编辑
转-网站发布“试图加载不同的格式”解决
摘要:源自:http://blog.csdn.net/wildboy2001/article/details/5792804缘由:在64位操作系统下IIS发布32位的项目,报“项目依赖的dll无法读取,试图加载格式不正确的程序”错误。原因:程序集之间的通讯要么全是64位环境下的,要么全是32位环境下的。不能混编访问。不然会出现“试图加载格式不正确的程序”的错误。解决方法:【C/S】运行C/S程序比较简单,直接在Build C/S程序的时候显式指定为X86(64位系统默认为X64)就可以了。【B/S】运行B/S稍稍复杂点。在建立网站的时候,又分为两种情况。A:建立的是“项目”:这个时候跟 C/S 的处
阅读全文
posted @
2012-09-21 09:49
dm3344
阅读(226)
推荐(0) 编辑
iis7.0 发布MVC
摘要:http://www.cnblogs.com/xm_cpppp/archive/2012/04/24/2468662.html
阅读全文
posted @
2012-09-21 09:37
dm3344
阅读(269)
推荐(0) 编辑
(转)ASP.NET MVC VS2010中更改默认调试浏览器
摘要:原文地址:http://blog.csdn.net/hyugahinat/article/details/7532898In Visual Studio 2010 (RC) there is no longer a "browse with" context menu when right clicking .aspx pages. How can you change the default browser now?By default it seems to use the operating system default browser, but I would pr
阅读全文
posted @
2012-05-25 09:15
dm3344
阅读(2225)
推荐(0) 编辑
IIS出现server application error
摘要:Server Application Error The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance. 访问IIS客户端出现如上错信息提示,在网上查了查解决方案如下:1。右键我的电脑--管理--本地用户和组,给IUS
阅读全文
posted @
2012-04-24 10:14
dm3344
阅读(248)
推荐(0) 编辑
mvc2 在iis5.1 和iis6 配置流程
摘要:iis6 :1 、 在服务器安装framework4.02、iis 中新增网站设置web主目录3、讲mvc.dll 放入网站bin目录下 C:\Program Files\Microsoft ASP.NET\ASP.NET MVC 2\Assemblies\System.Web.Mvc.dll(貌似这步可以省略)4、右键你项目属性->主目录->配置 中 “!!!!!!!!!!!!!插入!!!!!!!!!!!!重要的” dll 地址:C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll 安装4.0框架后有此文件(
阅读全文
posted @
2012-03-19 09:24
dm3344
阅读(274)
推荐(0) 编辑
MVC Control 返回各种数据
摘要:1. 返回ViewResultview plaincopy to clipboardprint?public ActionResult Index(){ViewData["Message"] = "Welcome to ASP.NET MVC!";return View();}public ActionResult Index(){ViewData["Message"] = "Welcome to ASP.NET MVC!";return View();}ActionResult是ViewResult基类2.返回字
阅读全文
posted @
2012-03-14 10:15
dm3344
阅读(1669)
推荐(1) 编辑