• 大小: 2.98MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: C#
  • 标签: 微信支付  

资源简介

微信支付,C#语言,可以用的微信支付.NET版,换自己的APPID,KEY等。可以用的微信支付.NET版可以用的微信支付.NET版可以用的微信支付.NET版,C#

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Web;

namespace WeiPay
{
    public class HttpUtil
    {

        private const string sContentType = “application/x-www-form-urlencoded“;
        private const string sUserAgent = “Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)“;
        public static string Send(string data string url)
        {
            return Send(Encoding.GetEncoding(“UTF-8“).GetBytes(data) url);
        }

        public static string Send(byte[] data string url)
        {
            Stream responseStream;
            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
            if (request == null)
            {
                throw new ApplicationException(string.Format(“Invalid url string: {0}“ url));
            }
            // request.UserAgent = sUserAgent;  
            request.ContentType = sContentType;
            request.Method = “POST“;
            request.ContentLength = data.Length;
            Stream requestStream = request.GetRequestStream();
            requestStream.Write(data 0 data.Length);
            requestStream.Close();
            try
            {
                responseStream = request.GetResponse().GetResponseStream();
            }
            catch (Exception exception)
            {
                throw exception;
            }
            string str = string.Empty;
            using (StreamReader reader = new StreamReader(responseStream Encoding.GetEncoding(“UTF-8“)))
            {
                str = reader.ReadToEnd();
            }
            responseStream.Close();
            return str;
        }  
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1809  2014-11-26 14:46  完整版本\Code\WeiPayDemo\Backup\WeiPay\HttpUtil.cs

     文件       1836  2014-11-26 14:55  完整版本\Code\WeiPayDemo\Backup\WeiPay\LogUtil.cs

     文件       1268  2014-11-26 14:46  完整版本\Code\WeiPayDemo\Backup\WeiPay\MD5Util.cs

     文件        648  2014-11-27 09:33  完整版本\Code\WeiPayDemo\Backup\WeiPay\OpenModel.cs

     文件       2418  2014-12-12 16:27  完整版本\Code\WeiPayDemo\Backup\WeiPay\PayConfig.cs

     文件       2586  2014-12-12 16:28  完整版本\Code\WeiPayDemo\Backup\WeiPay\PayModel.cs

     文件       1368  2014-11-26 14:46  完整版本\Code\WeiPayDemo\Backup\WeiPay\Properties\AssemblyInfo.cs

     文件       3741  2014-11-26 14:46  完整版本\Code\WeiPayDemo\Backup\WeiPay\RequestHandler.cs

     文件       6934  2014-11-27 11:15  完整版本\Code\WeiPayDemo\Backup\WeiPay\ResponseHandler.cs

     文件       3302  2014-11-26 14:46  完整版本\Code\WeiPayDemo\Backup\WeiPay\TenpayUtil.cs

     文件       2857  2014-11-27 09:33  完整版本\Code\WeiPayDemo\Backup\WeiPay\WeiPay.csproj

     文件       1389  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayDemo.sln

    ..A..H.     30720  2014-12-12 16:29  完整版本\Code\WeiPayDemo\Backup\WeiPayDemo.v11.suo

     文件     397312  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\DLL\Newtonsoft.Json.dll

     文件      91577  2014-11-26 14:48  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\JS\jquery.js

     文件       5988  2014-11-26 14:48  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\JS\lazyloadv3.js

     文件        369  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Notify.aspx

     文件       6071  2014-11-27 11:31  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Notify.aspx.cs

     文件        506  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Notify.aspx.designer.cs

     文件       1332  2014-11-26 14:47  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Properties\AssemblyInfo.cs

     文件       2253  2014-12-12 16:26  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Send.aspx

     文件       4331  2014-12-12 16:27  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Send.aspx.cs

     文件       2900  2014-11-27 09:38  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Send.aspx.designer.cs

     文件       7302  2014-11-27 09:09  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\Web.config

     文件       4279  2014-11-27 09:39  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\WeiPay.aspx

     文件       6693  2014-11-27 11:31  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\WeiPay.aspx.cs

     文件       2556  2014-11-27 09:38  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\WeiPay.aspx.designer.cs

     文件       5200  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\WeiPayWeb.csproj

     文件       1225  2014-11-26 14:49  完整版本\Code\WeiPayDemo\Backup\WeiPayWeb\WeiPayWeb.csproj.user

     文件      43074  2018-02-27 13:52  完整版本\Code\WeiPayDemo\UpgradeLog.htm

............此处省略97个文件信息

评论

共有 条评论