码迷,mamicode.com
首页 > 其他好文 > 详细

自动结算

时间:2014-06-28 10:15:40      阅读:190      评论:0      收藏:0      [点我收藏+]

标签: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=

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

自动结算

标签:style   blog   http   color   os   cti   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!