资源简介

asp.net 微信支付接口完整可用代码,附带如何完整使用说明,修改指定参数就可以使用。附带查看网址和微信支付接口操作注意事项

资源截图

代码片段和文件信息

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;
        }  
    }
}

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

     文件      14848  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\bin\Debug\WeiPay.dll

     文件      44544  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\bin\Debug\WeiPay.pdb

     文件       1809  2014-11-26 14:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\HttpUtil.cs

     文件       1836  2014-11-26 14:55  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\LogUtil.cs

     文件       1268  2014-11-26 14:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\MD5Util.cs

     文件       6144  2014-11-27 09:30  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\obj\Debug\Refactor\WeiPay.dll

     文件        585  2014-12-05 15:45  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\obj\Debug\WeiPay.csproj.FileListAbsolute.txt

     文件      14848  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\obj\Debug\WeiPay.dll

     文件      44544  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\obj\Debug\WeiPay.pdb

     文件        648  2014-11-27 09:33  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\OpenModel.cs

     文件       2418  2014-12-12 16:27  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\PayConfig.cs

     文件       2586  2014-12-12 16:28  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\PayModel.cs

     文件       1368  2014-11-26 14:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\Properties\AssemblyInfo.cs

     文件       3741  2014-11-26 14:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\RequestHandler.cs

     文件       6934  2014-11-27 11:15  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\ResponseHandler.cs

     文件       3302  2014-11-26 14:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\TenpayUtil.cs

     文件       2857  2014-11-27 09:33  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPay\WeiPay.csproj

     文件       1389  2014-11-26 14:49  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayDemo.sln

    ..A..H.     30720  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayDemo.suo

     文件       3735  2014-11-27 11:23  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\2014-11-27.txt

     文件      19783  2014-11-27 11:17  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\2014-11-27.txt

     文件      19959  2014-11-27 09:46  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\2014-11-27.txt.bak

     文件     397312  2014-11-26 14:49  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\Newtonsoft.Json.dll

     文件      14848  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\WeiPay.dll

     文件      44544  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\WeiPay.pdb

     文件      11776  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\WeiPayWeb.dll

     文件      26112  2014-12-12 16:29  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\bin\WeiPayWeb.pdb

     文件     397312  2014-11-26 14:49  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\DLL\Newtonsoft.Json.dll

     文件      91577  2014-11-26 14:48  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\JS\jquery.js

     文件       5988  2014-11-26 14:48  微信支付代码示例\完整版本(邹学典)\Code\WeiPayDemo\WeiPayWeb\JS\lazyloadv3.js

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

评论

共有 条评论