2010年4月15日
摘要: DimwbAsNewWebBrowser()'屏蔽脚本错误消息。wb.ScriptErrorsSuppressed=Truewb.Navigate("about:blank")wb.Document.Write(htmlString) 阅读全文
posted @ 2010-04-15 18:17 wl666lw 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 需要引用using System.Security.Cryptography; 方法一:类似ASP中的MD5加密方法 /// /// 获取MD5加密后的字符串 /// /// 需要加密的字符串 /// 加密数据长度,16位或者32位 /// public static string MD5(... 阅读全文
posted @ 2010-04-15 10:55 wl666lw 阅读(5348) 评论(0) 推荐(0) 编辑
  2010年4月12日
摘要: string url1 = @"http://login.vancl.com/Login/"; //提交注册信息的网址 string url2 = @"http://my.vancl.com/User/User_Order_List.aspx"; //需要下载的网页 string indata =... 阅读全文
posted @ 2010-04-12 09:24 wl666lw 阅读(1589) 评论(0) 推荐(1) 编辑
摘要: using System;using System.CodeDom.Compiler;using Microsoft.CSharp;using System.Reflection;using System.Text; namespace ConsoleApplication1{/// /// ... 阅读全文
posted @ 2010-04-12 09:18 wl666lw 阅读(1712) 评论(0) 推荐(0) 编辑
摘要: 1.建立一个资源描述文件:dllresource.rc;//用文本编辑器编辑就可以了 内容为:dllfile RT_RCDATA DllFilename.DLL //请相应更改文件名 2.在命令行下用brcc32 dllresource.rc生成dllresource.res文件 ... 阅读全文
posted @ 2010-04-12 09:16 wl666lw 阅读(570) 评论(0) 推荐(0) 编辑
摘要: using System;using System.CodeDom.Compiler;using Microsoft.CSharp;using System.Reflection;using System.Text;using System.CodeDom;using System.IO; na... 阅读全文
posted @ 2010-04-12 09:07 wl666lw 阅读(3492) 评论(0) 推荐(0) 编辑
  2010年4月11日
摘要: /// /// System.DirectoryServices.DirectoryEntry De = new DirectoryEntry(); /// De.Path = @"IIS://localhost/W3SVC/1/ROOT/Dir1/Dir2/Dir3"; /// Recursiv... 阅读全文
posted @ 2010-04-11 21:03 wl666lw 阅读(491) 评论(0) 推荐(0) 编辑
  2010年4月10日
摘要: using System;using System.DirectoryServices;using System.Collections; namespace IIS6{ /// /// IISWebServer的状态 /// public enum IISServerState { /// ... 阅读全文
posted @ 2010-04-10 20:58 wl666lw 阅读(744) 评论(0) 推荐(0) 编辑
  2010年4月9日
摘要: 最近在做一个流量统计的东西的时候,偶然发现IE在对iframe里面的页面写Cookie的时候有一些安全限制,导致读取Cookie不成功,找了好长时间的解决办法,重要找到如下的办法: 1.页面里的COOKIE不能是浏览器进程的COOKIE(包括验证票和不设置超时时间的COOKIE),否则跨域会取不到... 阅读全文
posted @ 2010-04-09 19:43 wl666lw 阅读(8528) 评论(1) 推荐(2) 编辑
  2010年4月8日
摘要: 网上的教程apache+PHP比较多,但windows2003+iis6.0下运行PHP,相信很多人会用到。所以写个详细安装步骤,让大家少走弯路。 准备工作: 装有IIS6.0的WIN2003平台。 下载php5.2.6(要手动安装版,WIN2003平台下自动安装经常出现PHP has encoun... 阅读全文
posted @ 2010-04-08 22:26 wl666lw 阅读(4774) 评论(0) 推荐(0) 编辑