首页 > 其他 > 详细

自动结算

时间:2014-06-28 10:15:22      阅读:285      评论:0      收藏:0      [点我收藏+]
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=

自动结算,布布扣,bubuko.com

自动结算

原文:http://www.cnblogs.com/mssql8/p/3810938.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!