摘要: win2003 IIS默认网站被停止,启动网站提示”另一程序正在使用此文件,进程无法访问 2010-06-24 16:07IIS默认网站停止,出现错误ox8ffe2740的问题其实是因为端口占用问题引起的。。。 1、在你的IIS默认网站-点击右键属性-把tcp端口改成其他就可了,把80改成一个没有使用的端口,iis就可以使用了,如果你改成了88,那么这个时侯访问地址应该改为:http://你的IP:88/ 或http://localhost:88/来访问了。如何还不行,看看是不是本机安装了瑞星防火墙,如果安装了,你把安关闭再试。 2、查看是什么软件占用了80端口。一般用迅雷的用户可以查下... 阅读全文
posted @ 2012-09-18 16:15 xust 阅读(1095) 评论(0) 推荐(0)
摘要: 在XP下,IIS5是如何运行MVC站点的呢,在2003下的IIS6里很容易就可以运行MVC,但是IIS5中需要配置一下扩展名才行选选择“默认网站”右键选择“属性”,出现下面界面后,选择“主目录”,然后选择“配置”点击“配置”后出现下面界面可以添加几个你在MVC路由中配置的扩展名,可以是aspx,asp,html,shtml等等在可执行文件中选择.net4.0的aspnet_isapi.dll文件即可。mvc2 在IIS6和IIS7 上的部署:mvc 不能部署在IIS5.1的虚拟目录下,不好用。调试发现文件的路径不对,以及一系列其他问题。IIS5.1以上的版本中,好像已经没有虚拟目录的概念了,他 阅读全文
posted @ 2012-09-18 16:10 xust 阅读(351) 评论(0) 推荐(0)
摘要: [红]IIS6架设网站常见问题及症状答疑2010-08-28 10:46:13来源:西部e网作者:浏览次数:62 很多朋友在用IIS6架网站的时候遇到不少问题,而这些问题有些在过去的IIS5里面就遇到过,有些是新出来的,做了很多次试验,结合以前的排错经验,做出了这个总结,希望能给大家帮上忙。 问题1:未启用父路径 症状举例: Server.MapPath() 错误 \'ASP 0175 : 80004005\' 不允许的 Path 字符 /0709/dqyllhsub/news/OpenDatabase.asp,行 4 在 MapPath 的 Path 参数中不允许字符 \&# 阅读全文
posted @ 2012-09-18 16:08 xust 阅读(117) 评论(0) 推荐(0)
摘要: CodeSmith 5 不支持中文注释问题:1. 启用 Enable unicode2. <%@ CodeTemplate Language="C#" TargetLanguage="C#" ResponseEncoding="UTF-8" Src="" Inherits="" Debug="true" CompilerVersion="v3.5" Description="Domain Template" %>加上 Res 阅读全文
posted @ 2012-09-18 16:03 xust 阅读(129) 评论(0) 推荐(0)
摘要: // nullable_type_operator.csusing System;class MainClass{ static int? GetNullableInt() { return null; } static string GetStringValue() { return null; } static void Main() { // ?? operator example. int? x = null; // y = x, unless x is null, i... 阅读全文
posted @ 2012-09-18 16:02 xust 阅读(129) 评论(0) 推荐(0)
摘要: IntroductionAs a matter of fact Microsoft Windows services, formerly known as NT services enable you to create long-running executable applications that run in its own Windows session, which then has the ability to start automatically when the computer boots and also can be manually paused, stopped 阅读全文
posted @ 2012-09-18 10:13 xust 阅读(331) 评论(0) 推荐(0)