资源简介
C# 微信公众号,通用后台管理,调用微信公众号的Api的版本可能比较低,需要更新个别的api接口,用来学习不错
代码片段和文件信息
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);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 13631488 2015-01-03 10:19 微信源码\2005\mxweixin.mdf
文件 1572864 2015-01-03 10:19 微信源码\2005\mxweixin_log.ldf
文件 311296 2014-05-04 13:43 微信源码\dll\Beyondbit.fr
文件 49664 2014-05-04 13:43 微信源码\dll\LitJSON.dll
文件 429056 2014-05-04 13:43 微信源码\dll\Newtonsoft.Json.dll
文件 83968 2014-05-04 13:43 微信源码\dll\Senparc.Weixin.MP.dll
文件 155 2014-08-11 20:28 微信源码\mssccprj.scc
文件 49664 2014-05-04 13:43 微信源码\MxWeiXinPF.API\bin\Debug\LitJSON.dll
文件 55808 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.API.dll
文件 263680 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.API.pdb
文件 198144 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.BLL.dll
文件 1347072 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.BLL.pdb
文件 71168 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Common.dll
文件 185856 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Common.pdb
文件 990720 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DAL.dll
文件 1844736 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DAL.pdb
文件 18432 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DBUtility.dll
文件 52736 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.DBUtility.pdb
文件 239616 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Model.dll
文件 1695232 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.Model.pdb
文件 32768 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.WeiXinComm.dll
文件 89600 2015-01-03 09:59 微信源码\MxWeiXinPF.API\bin\Debug\MxWeiXinPF.WeiXinComm.pdb
文件 83968 2014-05-04 13:43 微信源码\MxWeiXinPF.API\bin\Debug\Senparc.Weixin.MP.dll
文件 49664 2014-05-04 13:43 微信源码\MxWeiXinPF.API\bin\Release\LitJSON.dll
文件 51712 2014-07-20 11:39 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.API.dll
文件 171520 2014-07-20 11:39 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.API.pdb
文件 155136 2014-07-20 11:39 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.BLL.dll
文件 869888 2014-07-20 11:39 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.BLL.pdb
文件 65536 2014-07-20 11:38 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.Common.dll
文件 130560 2014-07-20 11:38 微信源码\MxWeiXinPF.API\bin\Release\MxWeiXinPF.Common.pdb
............此处省略6900个文件信息
相关资源
- Asp.Net版微信公众号开发源码Demo(入门
- Asp.Net 微信公众号发红包代码已通过测
- asp.net微信公众号微信支付源码绝对可
- c#微信公众号API开发
- 微信公众号支付接口
- C# 微信公众号开发(自定义菜单、图
- C#开发微信公众号
- 微信公众号开发之 自定义菜单功能
- MVC微信公众号后台开发案例(sqlite数
- asp.net 微信公众号开发
- 微信公众号支付接口文档以及
- c# 微信公众号扫码支付源码
- MVC4.0微信公众号开发DEMO
- 微信公众号入门源码c#asp.net服务号订
- C# 微信公众号 接收消息/发送消息/创
- C# 接收微信公众号返回消息
- 微信公众号SDK源码
- 调用微信公众号消息推送
- asp.net 微信公众号开发
- 微信小程序源码:国际包裹查询工具
评论
共有 条评论