资源简介
ASP.NET微信公众平台开发源代码,实现微信公众平台接口对接,完整的微信公众平台开发案例
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MxWeiXinPF.Common;
using System.Text;
namespace MxWeiXinPF.Web.shop
{
///
/// shopmgr 的摘要说明
///
public class shopmgr : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = “text/json“;
BLL.wx_shop_cart cartBll = new BLL.wx_shop_cart();
string _action = MyCommFun.QueryString(“myact“);
string openid = MyCommFun.RequestOpenid(); //得到微信用户的openid
Dictionary jsonDict = new Dictionary();
if (_action == “addCart“)
{
#region 添加购物车
try
{
int wid = MyCommFun.RequestInt(“wid“);
int productId = MyCommFun.RequestInt(“productid“);
int skuId = MyCommFun.RequestInt(“mid“);
string skuInfo = MyCommFun.QueryString(“attr“);
int productNum = MyCommFun.RequestInt(“bc“);
decimal totalPrice = (decimal)MyCommFun.RequestFloat(“totprice“ 0);
Model.wx_shop_cart cart = new Model.wx_shop_cart();
IList cartList = cartBll.GetModelList(“productId=“ + productId + “ and openid=‘“ + openid + “‘ and skuId=“+skuId);
bool isAdd = true;
if (cartList != null && cartList.Count > 0)
{
isAdd = false;
cart = cartList[0];
}
if (isAdd)
{
cart.createDate = DateTime.Now;
cart.openid = openid;
cart.productId = productId;
cart.productNum = productNum;
cart.skuId = skuId;
cart.skuInfo = skuInfo;
cart.totPrice = totalPrice * productNum;
cart.wid = wid;
int ret = cartBll.Add(cart);
if (ret > 0)
{
jsonDict.Add(“errCode“ “false“);
}
else
{
jsonDict.Add(“errCode“ “true“);
}
}
else
{
cart.openid = openid;
cart.productNum += productNum;
cart.skuId = skuId;
cart.skuInfo = skuInfo;
cart.totPrice += totalPrice * productNum;
cart.wid = wid;
bool ret = cartBll.Update(cart);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-11-18 20:34 ASP.NET微信公众平台源码\
目录 0 2016-11-18 20:34 ASP.NET微信公众平台源码\.vs\
目录 0 2016-11-19 10:43 ASP.NET微信公众平台源码\.vs\config\
文件 86550 2016-11-21 16:01 ASP.NET微信公众平台源码\.vs\config\applicationhost.config
目录 0 2017-04-27 09:03 ASP.NET微信公众平台源码\.vs\MxWeiXinPF\
目录 0 2016-11-18 20:36 ASP.NET微信公众平台源码\.vs\MxWeiXinPF\v14\
文件 420864 2016-12-19 15:51 ASP.NET微信公众平台源码\.vs\MxWeiXinPF\v14\.suo
目录 0 2017-04-27 09:03 ASP.NET微信公众平台源码\.vs\MxWeiXinPF\v15\
文件 422912 2017-04-27 09:24 ASP.NET微信公众平台源码\.vs\MxWeiXinPF\v15\.suo
目录 0 2014-12-23 16:40 ASP.NET微信公众平台源码\dll\
文件 311296 2014-05-04 13:43 ASP.NET微信公众平台源码\dll\Beyondbit.fr
文件 49664 2014-05-04 13:43 ASP.NET微信公众平台源码\dll\LitJSON.dll
文件 429056 2014-05-04 13:43 ASP.NET微信公众平台源码\dll\Newtonsoft.Json.dll
文件 83968 2014-05-04 13:43 ASP.NET微信公众平台源码\dll\Senparc.Weixin.MP.dll
目录 0 2014-12-23 16:54 ASP.NET微信公众平台源码\MxWeiXinPF.API\
目录 0 2014-12-23 16:40 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\
目录 0 2016-11-19 10:41 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\
文件 49664 2014-05-04 13:43 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\LitJSON.dll
文件 54272 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.API.dll
文件 183808 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.API.pdb
文件 197632 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.BLL.dll
文件 945664 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.BLL.pdb
文件 69632 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Common.dll
文件 144896 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Common.pdb
文件 976384 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DAL.dll
文件 1443328 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DAL.pdb
文件 17920 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DBUtility.dll
文件 44544 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DBUtility.pdb
文件 224768 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Model.dll
文件 1334784 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Model.pdb
文件 32768 2017-04-27 09:06 ASP.NET微信公众平台源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.WeiXinComm.dll
............此处省略6928个文件信息
相关资源
- 最新微软官方文档 ASP.NET CORE 2.2
- ASP.net基于百度AI的在线人脸登陆,人
- ASP.Net MVC + bootstrap 仓库管理系统源码
- 基于C# MVC开发的WEB API通用框架 附带
- 深入体验ASP.NET项目开发_源码
- ASP.Net呼叫中心客服系统源码.zip.zip
- 基于C# MVC开发的WEB API通用框架 附带
- asp.net母版页大全
- 10个ASP.NET项目源码
- C# 实现微信公众平台接口消息收发D
- C#版微信登录--亲测有效.zip
- C# 类似webapi的Nancy框架
- 企业OA办公系统 asp.net源码 三层架构
- ASP.NET 在线考试系统
- 小型音乐网站
- asp.net mvc企业管理系统项目开发源码
- ASP.NET的企业通用权限管理系统 源代码
- C#基于MVC+EasyUI+ECharts后台管理系统完整
- ASP.Net 后台通用权限系统 源代码
- ASP.net网上销售系统.zip
- web前端开发 使用ASP.NET CoreAngular 和B
- ASP.NET门户网站源码
- 11个ASP.NET完整项目打包
- ASP.NETMVC5kjjm_jb51.rar
- 功能强大的ASP.NET版聊天室源码使用
- ASP.NET程序设计教程C#版
- 车辆管理系统源码 移动派车系统 车管
- asp.net 学生管理系统160963
- 基于ASP.NET+MYSQL的图片管理系统
- ASP.NET开发环境中水晶报表和在水晶报
评论
共有 条评论