C 微信開發 微信會員卡(三)啟用會員卡

2022-02-26 07:19:45 字數 3387 閱讀 9532

在會員領取了會員卡之後需要做 乙個跳轉性啟用,模式請看下圖:

在建立會員卡的時候需要配置下這個引數的值:

memberactivate.aspx頁面**如下:

c#" autoeventwireup="

true

" codebehind="

memberactivate.aspx.cs

" inherits="

chainstock.mobile.member.memberactivate

" %>

"">"

background-color: #f2f2f2;

"class="

no-padding no-margin

">

後台**:

using

chain.wechat;

using

newtonsoft.json;

using

system;

using

system.collections.generic;

using

system.data;

using

system.io;

using

system.linq;

using

system.net;

using

system.text;

using

system.web;

using

system.web.ui;

using

system.web.ui.webcontrols;

namespace

chainstock.mobile.member

void

binddata()

if (!string.isnullorempty(request.querystring["

card_id

"]))

string getauthorize =getauthorize();

if (getauthorize != ""

)

}if (!string

.isnullorempty(access_token))

";string strresult =postwebrequest(posturl, postdate);

strresult = "

[" + strresult + "]"

; newtonsoft.json.linq.jarray codearray =(newtonsoft.json.linq.jarray)jsonconvert.deserializeobject(strresult);

newtonsoft.json.linq.jobject objresult = (newtonsoft.json.linq.jobject)codearray[0

];

if (objresult["

errmsg

"].tostring() == "ok"

)

if (!string

.isnullorempty(stractivate_ticket))

";string userinforesult =postwebrequest(ticketposturl, ticketpostdata);

userinforesult = "

[" + userinforesult + "]"

; newtonsoft.json.linq.jarray userinfoarray =(newtonsoft.json.linq.jarray)jsonconvert.deserializeobject(userinforesult);

newtonsoft.json.linq.jobject objuserinfo = (newtonsoft.json.linq.jobject)userinfoarray[0

];

if (objuserinfo["

errmsg

"].tostring() == "ok"

) }}

}}}}

catch

(exception ex)

}//通過code換取網頁授權access_token

public

string

getauthorize()

else

}//////

/// ///

請求的路徑

///傳送的資料

///public

string postwebrequest(string posturl, string

paramdata)

catch

(exception ex)

return

ret;}}

}

啟用時我使用了一般處理程式來啟用的**如下:這個是根據我的系統做了乙個判斷,是我系統中的會員才能啟用,否則不能啟用

#region 跳轉式啟用會員卡 參考:https://

//禁止啟用

}else

}catch

(exception ex)

context.response.write(flag);

}#endregion

C 微信開發 微信會員卡(二)

如圖 點選啟用會員卡時,要跳轉到如下的 要實現這個功能,首先我們在建立會員卡後就操作如下 region 新增啟用時的自定義字段 string customfiled customfiled string customurl access token string resultcustom postw...

專案 微會員卡工作筆記

有6張表 商家,會員,會員卡,優惠劵 進展和遇到的問題 前天 週三上午設計錶類,下午開始寫 周四寫了商家,但是卡住了 寫了剩下的user和card action,bo,dao等 現在2014 9 19 10 35 52 現在卡在了,上傳多 那一塊,還有乙個資料庫報錯,缺少select欄位 inser...

微信會員卡線上線下積分打通研究

會員卡重要可打通字段包括 積分和折扣 買單支付時可用 有乙個可選啟用會員卡的動作。同步可用涉及到的介面 查詢會員資訊 積分,餘額 不懂餘額在這裡是什麼概念,沒看到充值的功能,是備用欄位吧?更新會員卡資訊 如果無法實時同步強烈建議一天更新一次不超過三次 會員的積分等資料變動可選推送給使用者。疑問 在建...