• 大小: 6KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: 其他
  • 标签: 企业微信  

资源简介

企业微信调用扫一扫功能,和公众号有点不一样,两种调用我都成功了。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication4.QRcode
{
    public partial class QR : System.Web.UI.Page
    {

        public string time = ““;
        public string randstr = ““;
        public string signstr = ““;
        protected void Page_Load(object sender EventArgs e)
        {

            if (!IsPostBack)
            {
                //调用微信二维码扫描
                Response.Cache.SetNoStore();
                string[] str = wxHelper.GetWXInfo(this.Request.Url.ToString()).Split(‘‘);
                time = str[0];
                randstr = str[1];
                signstr = str[2];


            }

        }
    }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        5862  2019-09-19 12:01  QRcode\QR.aspx
     文件         803  2017-07-31 13:52  QRcode\QR.aspx.cs
     文件         783  2017-08-01 10:27  QRcode\QR.aspx.designer.cs
     文件        6191  2019-09-20 10:22  QRcode\wxHelper.cs
     目录           0  2019-09-20 10:55  QRcode\

评论

共有 条评论