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=
自动结算
时间: 2024-10-29 19:08:41