2010年5月19日
摘要: 参考原文(英文) http://www.codeproject.com/cs/media/IECapture.asp 环境:Visual Studio.NET 2003 语言:C#系统需求:Windows + iexplore 该程序的目标很明确,就是捕获IE浏览器打开的网页存为图像,附加的需求... 阅读全文
posted @ 2010-05-19 00:13 wl666lw 阅读(414) 评论(0) 推荐(1) 编辑
  2010年5月18日
摘要: 因为FF(Firefox)不怕IFRAME,于是就拿IE开刀,不知道比尔有没有奖发。我只写了一句代码,就搞定了,哈,痛快。就是IE only(特有的)的CSS中的属性e­xpression,插进去试试,果然那些IFRAME不起作用了。代码如下:分析:前缀:e­xpression(表达式); 这个前缀... 阅读全文
posted @ 2010-05-18 09:25 wl666lw 阅读(518) 评论(0) 推荐(0) 编辑
  2010年5月17日
摘要: 可以使用DOS命令:rd /q /s NewFolder..\ 注意是两个点 阅读全文
posted @ 2010-05-17 16:17 wl666lw 阅读(1327) 评论(0) 推荐(0) 编辑
  2010年5月15日
摘要: 一.应用场景 客户服务器上装的软件越来越多,由原来一个人管理改为几个人同时管理了,因此不同的管理员需要经常进行远程登陆,注销操作。 服务器上原有的一些程序是windows程序,用户登陆注销后,程序就退出了,咋办?把GUI程序改成windows服务程序是可行的,但客户希望能尽快解决此问题啊,咋办?于... 阅读全文
posted @ 2010-05-15 18:47 wl666lw 阅读(11338) 评论(1) 推荐(4) 编辑
摘要: Installer1.cs Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem;2usingSystem.C... 阅读全文
posted @ 2010-05-15 12:37 wl666lw 阅读(3743) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Web; using System.Configuration; namespace CheckDownload { #region Corp // By : 公子哥 // .NET 实现ISAPI过滤器,文件防下载 #endregion pub... 阅读全文
posted @ 2010-05-15 11:35 wl666lw 阅读(506) 评论(0) 推荐(0) 编辑
  2010年5月13日
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Tex... 阅读全文
posted @ 2010-05-13 00:20 wl666lw 阅读(4067) 评论(1) 推荐(0) 编辑
  2010年5月12日
摘要: CREATE PROCEDURE Procedure_Paging(@tblName nvarchar(1000), ----要显示的表或多个表的连接@fldName nvarchar(4000) = '*', ----要显示的字段列表@pageSize int = 1, ----每页显示的记录个数... 阅读全文
posted @ 2010-05-12 15:27 wl666lw 阅读(412) 评论(0) 推荐(0) 编辑
  2010年5月8日
摘要: 原始字符串: " & g_CryptThis & "" Response.Write "密钥: " & strFullKey& "" Response.Write "加密后: " & Server.URLEncode(EnCrypt(g_CryptThis)) & "" Response.Write... 阅读全文
posted @ 2010-05-08 20:27 wl666lw 阅读(865) 评论(0) 推荐(0) 编辑
摘要: C# 提供大量运算符,这些运算符是指定在表达式中执行哪些操作的符号。通常允许对枚举进行整型运算,例如 ==、!=、、=、binary +、binary -、^、&、|、~、++、-- 和 sizeof()。此外,很多运算符可被用户重载,由此在应用到用户定义的类型时更改这些运算符的含义。 下表列出了按... 阅读全文
posted @ 2010-05-08 20:23 wl666lw 阅读(242) 评论(0) 推荐(0) 编辑