摘要:1、首先配置applicationhost.config文件 右击IIS,点击显示所有应用程序即可找到此config文件。 找到<binding protocol="http" bindingInformation="*:60074:localhost" />节点,在下面配置一条,将localhos
阅读全文
摘要:public static List DatatableToList(this DataTable dt) where TResult : class, new() { //创建一个属性的列表 List prlist = new List(); //获取TResult的类型实例 反射的入口 ...
阅读全文
摘要:WebClient client = new WebClient(); 第一种 string URLAddress = @"http://files.cnblogs.com/x4646/tree.zip"; string receivePath=@"C:\"; client.DownloadFile(URLAddress, receivePath + System.IO.Path.Get...
阅读全文