上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 源代码: 直接拷贝至需要显示的位置保存即可。 阅读全文
posted @ 2008-07-29 10:04 missthe 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 该效果在IE、firefox3下均可正常浏览。 效果截图: 源文件压缩包: http://www.cnblogs.com/Files/missthe/show.rar 阅读全文
posted @ 2008-07-10 17:37 missthe 阅读(287) 评论(0) 推荐(0) 编辑
摘要: string usn = Request.Form["username"].Trim(); string pwd = Request.Form["password"].Trim(); SqlConnection conn = new SqlConnection(ConfigurationSettings.AppSettings["connStr"])... 阅读全文
posted @ 2008-06-20 16:49 missthe 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 效果截图: 源代码: >" onclick="move('a','b',1)"> " onclick="move('a','b')"> 阅读全文
posted @ 2008-06-03 17:00 missthe 阅读(699) 评论(0) 推荐(0) 编辑
摘要: 问题呈现: 用于运行 ASP.NET 的进程帐户必须具有对 IIS 元数据库(如 IIS://servername/W3SVC)的读访问权。 原因分析: 现此问题多是因为先装.net framework后装IIS 造成 解决方法: 开始->程序->Microsoft .NET Framework SDK v2.0->SDK 命令提示 输入 aspnet_regiis -i 回车 接下来可... 阅读全文
posted @ 2008-06-03 15:06 missthe 阅读(1303) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2008-06-02 10:59 missthe 阅读(432) 评论(1) 推荐(0) 编辑
摘要: 其实方法很简单: 第一步: 在body中加上text-align:center 让整个页面内的所有"物件"居中. div块也居中了. 但这时会发现一个问题,DIV块(id="content")被居中的同时, 文本也被居中了,但我们需要的是文本左对齐. 于是有了第二步. 第二步: #content{text-align:left} 这样就实现了div块居中,但文本不居中的效果. 阅读全文
posted @ 2008-05-21 09:31 missthe 阅读(2925) 评论(1) 推荐(0) 编辑
摘要: Access: sql=select * from table where pubtime between #2008-1-5# and #2008-5-18# Mssql: sql=select * from table where pubtime between '2008-1-5' and '2008-5-18' 阅读全文
posted @ 2008-05-16 12:01 missthe 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: 第一题:用程序实现以下效果: @ @@ @@@ @@@@ @@@@@ @@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@@ @@@@@@@@@@ 答案: dim i,k for i = 1 to 10 for k = 1 to i response.write "@" next response.write("") next 第二题:用程序实现以下... 阅读全文
posted @ 2008-05-15 15:37 missthe 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 造成这个问题的原因是IIS服务没有全部加载的原因。比如IIS加载ISAPI_Rewrite未成功,会不断地加载,从而导致,CPU占用过多,出现Service Unavailable,原因可能是ISAPI_Rewrite的安装目录没有everyone的访问权限,加上权限就可以正常加载。当然也有可能是加载其它库未成功,顺着这个思路,就比较容易解决Service Unavailable的问题了。 ... 阅读全文
posted @ 2008-05-08 14:32 missthe 阅读(605) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页