11 2014 档案

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