标签:style blog http color os cti
using System; using System.ComponentModel; using System.IO; using System.Net; namespace TimerDay { class Program { private static void Main(string[] args) { WebClient webClient = new WebClient(); try { string str = File.ReadAllText("path.txt"); str = String.Concat(str, "1"); webClient.DownloadString(str); } catch { } finally { webClient.Dispose(); } } }
在同级目录中path的内容为
http://域名/FunctionGroup/Bonus/AutoCalculate.aspx?cycle=
标签:style blog http color os cti
原文地址:http://www.cnblogs.com/mssql8/p/3810938.html