11 2014 档案
摘要:代码:using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace MyWebBrowser{ static class Program { ...
阅读全文
摘要:JS代码:View CodeC#代码:string html = "文字cc href=\"www.baidu.com\" cbas cchref 1";Regex reg = new Regex("]+[\\s]+)href=(\"(?[^\"']*)\"|'(?[^\"']*)')[^]*>"...
阅读全文
摘要:一、控制面板—>程序和功能—>打开或关闭Windows功能 把相关的功能勾上,点“确定”二、新建一个网站,配置ISAPI和CGI限制、处理程序映射三、CGI控制台应用程序代码:using System;using System.Collections.Generic;using System.Te...
阅读全文
摘要:代码:/// /// Http上传文件/// public static string HttpUploadFile(string url, string path){ // 设置参数 HttpWebRequest request = WebRequest.Create(url) as ...
阅读全文
摘要:代码:/// /// Http下载文件/// public static string HttpDownloadFile(string url, string path){ // 设置参数 HttpWebRequest request = WebRequest.Create(url) a...
阅读全文