上一页 1 ··· 9 10 11 12 13 14 15 下一页

2008年8月21日

asp.net站点常见问题绵集

摘要: 一、错误信息:出现“你的机器或服务器没有指定文件与 文件夹的权限”的错误提示框 解决方法:这是由于站点在运行过程中要读写数据库和在相应目录下生成HTML文件,所以站点所在目录要对EveryOne用户打开 所有权限(仅对NTFS格式)。 具体操作如下: 打开“我的电脑”----找到网站所在文件夹----在其上点右键----选“属性”-----切换到“安全性”选项 卡,在这里给Ev... 阅读全文

posted @ 2008-08-21 15:56 liuhaitao 阅读(724) 评论(0) 推荐(0) 编辑

asp.net环境配置

摘要: 一、安装IIS与配置IIS 在Windows 2000、Windows XP、Windows 2003或Windows Vista等操作系统中,IIS文件及安装方式都有所不同。 1、Windows 2003下安装IIS: 依次点击“开始”->“设置”->“控制面板”->“添加删除程序”,在出现的“添加删除程序”界面中,单击 “添加/删除 Windows组件”,在出现... 阅读全文

posted @ 2008-08-21 13:43 liuhaitao 阅读(2208) 评论(0) 推荐(0) 编辑

2008年8月19日

动态显示系统时间

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 效果: 2008年08月19日星期二 15:35:47 其中秒部分是一直变化的 阅读全文

posted @ 2008-08-19 15:37 liuhaitao 阅读(371) 评论(0) 推荐(0) 编辑

2008年8月14日

left join 和 right join

摘要: 表a aid adate 1 a1 2 a2 3 a3 表b bid bdate 1 b1 2 b2 4 b4 两个表a,b相连接,要取出id相同的字段 select * from a ,b where a.aid = b.bid这是仅取出匹配的数据. 此时的取出的是: aid adate bid bdate 1 a1 ... 阅读全文

posted @ 2008-08-14 14:59 liuhaitao 阅读(273) 评论(0) 推荐(0) 编辑

特殊符号在html中的表示

摘要: 特殊符号 html & &amp; ' &apos; > &gt; < &lt; " &quot; 阅读全文

posted @ 2008-08-14 14:19 liuhaitao 阅读(2098) 评论(0) 推荐(0) 编辑

得到一个文件夹下的文件,并将文件删除

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#region 删除一个目录下的文件 public static void DelFile(string path) { DirectoryIn... 阅读全文

posted @ 2008-08-14 13:53 liuhaitao 阅读(162) 评论(1) 推荐(0) 编辑

2008年8月11日

文件下载

摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> private void DownLoad(string filename) { FileInfo DownloadFile = new FileInfo(fil... 阅读全文

posted @ 2008-08-11 17:19 liuhaitao 阅读(133) 评论(0) 推荐(0) 编辑

2008年8月5日

shutdown自动关机

摘要: 在cmd中执行:at 22:00 shutdown -s 表示在十点的时候自动关机 阅读全文

posted @ 2008-08-05 18:19 liuhaitao 阅读(450) 评论(0) 推荐(0) 编辑

2008年8月1日

把"\"转换成"/"

摘要: string s = "sss\\sss\\"; string ss = s.Replace("\\", @"/"); 阅读全文

posted @ 2008-08-01 11:39 liuhaitao 阅读(217) 评论(0) 推荐(0) 编辑

2008年7月31日

关于Server.MapPath()

摘要: Server.MapPath("~/"); //返回网站的根目录 如:E:\RisingInfo.Root\RisingInfo\RisingInfo Server.MapPath(""); //返回当前页面的目录 如:E:\RisingInfo.Root\RisingInfo\RisingInfo\MSG\Stat Server.MapPath(".")与Server.MapPat... 阅读全文

posted @ 2008-07-31 17:36 liuhaitao 阅读(248) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 下一页

导航