<tfoot id="xzkhl"><source id="xzkhl"><label id="xzkhl"></label></source></tfoot>
  • <ruby id="xzkhl"></ruby>

    <pre id="xzkhl"><fieldset id="xzkhl"></fieldset></pre>
    \r\n \r\n  \r\n  位置:<\/span>\r\n  \r\n   
  • 首頁<\/a><\/li>\r\n   
  • 微信管理<\/li>\r\n   
  • 德橋員工服務中心----分組管理<\/li>\r\n  <\/ul>\r\n  <\/p>\r\n  分組管理<\/p>\r\n   \r\n     新建分組<\/span>關閉<\/a>  <\/p>\r\n      30字符以內(nèi)<\/p>\r\n    \r\n    確定創(chuàng)建<\/p><\/asp:LinkButton>\r\n     <\/p>\r\n    <\/p>\r\n  \r\n   \r\n    \r\n     \r\n      序號<\/th>\r\n      ID編號<\/th>\r\n      分組名稱<\/th>\r\n      分組人數(shù)<\/th>\r\n      操作<\/th>\r\n     <\/tr>\r\n    <\/HeaderTemplate>\r\n    \r\n     '>\r\n      <\/asp:Label><\/td>\r\n      <%# Eval(\"Group_ID\") %><\/td>\r\n      <%# Eval(\"Group_Name\") %><\/td>\r\n      <%# Eval(\"Group_Count\") %><\/td>\r\n      \r\n        ','<%# Eval(\"Group_Name\") %>');\">修改分組名稱<\/a> \r\n         ' >刪除分組<\/asp:LinkButton>\r\n      <\/td>\r\n     <\/tr>\r\n    <\/ItemTemplate>\r\n   <\/asp:Repeater>\r\n  <\/table>\r\n   ┼ 新建分組<\/p><\/a>\r\n <\/form>\r\n<\/body>\r\n<\/html><\/pre>

    <\/p>

    ?? ??? ??? ????. <\/strong> <\/p>

    <\/p>

    protected void Page_Load(object sender, EventArgs e)\r\n  {\r\n   if(!Page.IsPostBack)\r\n   {\r\n    BindGroupList();\r\n    this.DataBind();\r\n   }\r\n  }\r\n\r\n  private void BindGroupList()\r\n  {\r\n   WeiXinServer wxs = new WeiXinServer();\r\n\r\n   \/\/\/從緩存讀取accesstoken\r\n   string Access_token = Cache[\"Access_token\"] as string;\r\n\r\n   if (Access_token == null)\r\n   {\r\n    \/\/如果為空,重新獲取\r\n    Access_token = wxs.GetAccessToken();\r\n\r\n    \/\/設置緩存的數(shù)據(jù)7000秒后過期\r\n    Cache.Insert(\"Access_token\", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);\r\n   }\r\n\r\n   string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);\r\n\r\n   string jsonres = \"\";\r\n\r\n   string content = Cache[\"AllGroups_content\"] as string;\r\n\r\n   if (content == null)\r\n   {\r\n    jsonres = \"https:\/\/api.weixin.qq.com\/cgi-bin\/groups\/get?access_token=\" + Access_tokento;\r\n\r\n    HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(jsonres);\r\n    myRequest.Method = \"GET\";\r\n    HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();\r\n    StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);\r\n    content = reader.ReadToEnd();\r\n    reader.Close();\r\n\r\n    \/\/設置緩存的數(shù)據(jù)7000秒后過期\r\n    Cache.Insert(\"AllGroups_content\", content, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);\r\n   }\r\n\r\n   \/\/使用前需要引用Newtonsoft.json.dll文件\r\n   JObject jsonObj = JObject.Parse(content);\r\n\r\n\r\n   int groupsnum = jsonObj[\"groups\"].Count();\r\n\r\n\r\n   List wxgrouplist = new List();\r\n   \r\n   for (int i = 0; i < groupsnum; i++)\r\n   {\r\n    WxGroupsInfo wginfo = new WxGroupsInfo();\r\n\r\n    wginfo.Group_ID = jsonObj[\"groups\"][i][\"id\"].ToString();\r\n\r\n    wginfo.Group_Name = jsonObj[\"groups\"][i][\"name\"].ToString();\r\n\r\n    wginfo.Group_Count = jsonObj[\"groups\"][i][\"count\"].ToString();\r\n\r\n    wxgrouplist.Add(wginfo);\r\n   }\r\n\r\n   this.RepeaterGroupList.DataSource = wxgrouplist;\r\n   this.RepeaterGroupList.DataBind();\r\n  }\r\n  \/\/\/ \r\n  \/\/\/ 綁定事件\r\n  \/\/\/ <\/summary>\r\n  \/\/\/ <\/param>\r\n  \/\/\/ <\/param>\r\n  protected void RepeaterGroupList_ItemDataBound(object sender, RepeaterItemEventArgs e)\r\n  {\r\n   if(e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem)\r\n   {\r\n    Label lbXuHao = e.Item.FindControl(\"lbXuHao\") as Label;\r\n\r\n    int num = 1;\r\n\r\n    lbXuHao.Text = num.ToString();\r\n\r\n    for (int i = 0; i < this.RepeaterGroupList.Items.Count;i++ )\r\n    {\r\n     num += 1;\r\n     lbXuHao.Text = num.ToString();\r\n    }\r\n\r\n\r\n    LinkButton LinkBtnDeleteGroup = e.Item.FindControl(\"LinkBtnDeleteGroup\") as LinkButton;\r\n\r\n    LinkBtnDeleteGroup.Attributes.Add(\"OnClick\", \"return confirm('您確定要刪除該分組?刪除后該分組內(nèi)的人員即將恢復到默認分組!')\");\r\n\r\n   }\r\n  }\r\n  \/\/\/ \r\n  \/\/\/ 執(zhí)行事件\r\n  \/\/\/ <\/summary>\r\n  \/\/\/ <\/param>\r\n  \/\/\/ <\/param>\r\n  protected void RepeaterGroupList_ItemCommand(object source, RepeaterCommandEventArgs e)\r\n  {\r\n\r\n   \/\/ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('刪除接口已關閉!');location='WxGroupManageList.aspx';\", true);\r\n   if (e.CommandName == \"DeleteGroups\")\r\n   {\r\n    WeiXinServer wxs = new WeiXinServer();\r\n    string res = \"\";\r\n\r\n    \/\/\/從緩存讀取accesstoken\r\n    string Access_token = Cache[\"Access_token\"] as string;\r\n\r\n    if (Access_token == null)\r\n    {\r\n     \/\/如果為空,重新獲取\r\n     Access_token = wxs.GetAccessToken();\r\n\r\n     \/\/設置緩存的數(shù)據(jù)7000秒后過期\r\n     Cache.Insert(\"Access_token\", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);\r\n    }\r\n\r\n    string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);\r\n\r\n\r\n    string posturl = \"https:\/\/api.weixin.qq.com\/cgi-bin\/groups\/delete?access_token=\" + Access_tokento;\r\n\r\n\r\n    \/\/POST數(shù)據(jù)例子: POST數(shù)據(jù)例子:{\"group\":{\"id\":108}}\r\n\r\n    string groupid = e.CommandArgument.ToString();\r\n\r\n    string postData = \"{\\\"group\\\":{\\\"id\\\":\\\"\" + groupid.ToString() + \"\\\"}}\";\r\n\r\n    res = wxs.GetPage(posturl, postData);\r\n\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('刪除成功!由于緩存問題,您可能需要重新登錄才能看到效果!');location='WxGroupManageList.aspx';\", true);\r\n   }\r\n  }\r\n  \/\/\/ \r\n  \/\/\/ 創(chuàng)建分組\r\n  \/\/\/ <\/summary>\r\n  \/\/\/ <\/param>\r\n  \/\/\/ <\/param>\r\n  protected void LinkBtnCreateGroup_Click(object sender, EventArgs e)\r\n  {\r\n   if (this.txtgroupsName.Value.ToString().Equals(\"分組名稱\"))\r\n   {\r\n    \/\/\/\/\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('不能為空!')\", true);\r\n    this.txtgroupsName.Focus();\r\n    return;\r\n   }\r\n\r\n\r\n   WeiXinServer wxs = new WeiXinServer();\r\n   string res = \"\";\r\n\r\n   \/\/\/從緩存讀取accesstoken\r\n   string Access_token = Cache[\"Access_token\"] as string;\r\n\r\n   if (Access_token == null)\r\n   {\r\n    \/\/如果為空,重新獲取\r\n    Access_token = wxs.GetAccessToken();\r\n\r\n    \/\/設置緩存的數(shù)據(jù)7000秒后過期\r\n    Cache.Insert(\"Access_token\", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);\r\n   }\r\n\r\n   string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);\r\n\r\n\r\n   string posturl = \"https:\/\/api.weixin.qq.com\/cgi-bin\/groups\/create?access_token=\" + Access_tokento;\r\n\r\n\r\n   string postData = \"{\\\"group\\\":{\\\"name\\\":\\\"\" + this.txtgroupsName.Value.ToString().Trim() + \"\\\"}}\";\r\n\r\n\r\n   res = wxs.GetPage(posturl, postData);\r\n\r\n\r\n   ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('創(chuàng)建成功!如未顯示,請退出重新登錄即可!');location='WxGroupManageList.aspx';\", true);\r\n  }<\/pre>

    <\/p>

    ???? ?? ?? ??<\/span><\/strong><\/p>

    \"asp.net<\/p>

    ????? ??: <\/strong><\/p>

    <\/p>

    \r\n\r\n\r\n\r\n\r\n <\/title>\r\n <style type=\"text\/css\">\r\n  .inputstyle { height:35px; line-height:35px; text-indent:5px; width:280px;background-image:url('images\/inputbg.gif'); background-repeat:repeat-x;border-top:solid 1px #a7b5bc; border-left:solid 1px #a7b5bc; border-right:solid 1px #ced9df; border-bottom:solid 1px #ced9df; float:left; margin:auto 5px auto 5px;\r\n  }\r\n <\/style>\r\n<\/head>\r\n<body>
    <h1><a href="http://ipnx.cn/">亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱</a></h1>\r\n <form id=\"form1\" runat=\"server\">\r\n  <table border=\"1\" style=\" width:500px; border-collapse:collapse; margin:20px auto 20px auto; line-height:40px;\">\r\n   <tr>\r\n    <td style=\"text-align:right;\">分組編號:<\/td>\r\n    <td> <asp:TextBox ID=\"txtGroupId\" CssClass=\"inputstyle\" Enabled=\"false\" runat=\"server\"><\/asp:TextBox><\/td>\r\n   <\/tr>\r\n   <tr>\r\n    <td style=\"text-align:right;\">分組名稱:<\/td>\r\n    <td> \r\n     <asp:TextBox ID=\"txtGroupName\" CssClass=\"inputstyle\" runat=\"server\"><\/asp:TextBox>\r\n    <\/td>\r\n   <\/tr>\r\n   <tr>\r\n    <td><\/td>\r\n    <td>\r\n      <asp:LinkButton ID=\"LinkBtnSet\" runat=\"server\" OnClick=\"LinkBtnSet_Click\" ><p style=\"background-image:url('images\/buttonbg.png'); width:111px; height:35px; line-height:35px; float:left; font-weight:bold;text-align:center;color:#fff;\"> 設 置<\/p><\/asp:LinkButton><\/td>\r\n   <\/tr>\r\n  <\/table>\r\n <\/form>\r\n<\/body>\r\n<\/html><\/pre><p><\/p><p><strong>??? ?? : <\/strong><br\/><\/p><p class=\"jb51code\"><\/p><pre class='brush:php;toolbar:false;'>\r\n protected void Page_Load(object sender, EventArgs e)\r\n  {\r\n   if(!Page.IsPostBack)\r\n   {\r\n    if (Request.QueryString[\"id\"] != null)\r\n    {\r\n     string group_id = Request.QueryString[\"id\"].ToString();\r\n     string group_name = Request.QueryString[\"name\"].ToString();\r\n     this.txtGroupId.Text = group_id.ToString();\r\n     this.txtGroupName.Text = group_name.ToString();\r\n     this.txtGroupName.Focus();\r\n    }\r\n   }\r\n  }\r\n  \/\/\/ <summary>\r\n  \/\/\/ 設置\r\n  \/\/\/ <\/summary>\r\n  \/\/\/ <param name=\"sender\"><\/param>\r\n  \/\/\/ <param name=\"e\"><\/param>\r\n  protected void LinkBtnSet_Click(object sender, EventArgs e)\r\n  {\r\n   if(String.IsNullOrWhiteSpace(this.txtGroupName.Text.ToString().Trim()))\r\n   {\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('不能為空!');\", true);\r\n    this.txtGroupName.Focus();\r\n    return;\r\n   }\r\n   if (this.txtGroupName.Text.ToString().Trim().Length>30)\r\n   {\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('組名稱應在30個字符之內(nèi)!');\", true);\r\n    this.txtGroupName.Focus();\r\n    return;\r\n   }\r\n\r\n   WeiXinServer wxs = new WeiXinServer();\r\n   string res = \"\";\r\n\r\n   \/\/\/從緩存讀取accesstoken\r\n   string Access_token = Cache[\"Access_token\"] as string;\r\n\r\n   if (Access_token == null)\r\n   {\r\n    \/\/如果為空,重新獲取\r\n    Access_token = wxs.GetAccessToken();\r\n\r\n    \/\/設置緩存的數(shù)據(jù)7000秒后過期\r\n    Cache.Insert(\"Access_token\", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);\r\n   }\r\n\r\n   string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);\r\n\r\n\r\n   string posturl = \"https:\/\/api.weixin.qq.com\/cgi-bin\/groups\/update?access_token=\" + Access_tokento;\r\n\r\n\r\n   \/\/POST數(shù)據(jù)例子:POST數(shù)據(jù)例子:{\"group\":{\"id\":108,\"name\":\"test2_modify2\"}}\r\n\r\n\r\n   \/\/string postData = \"{\\\"group\\\":{\\\"name\\\":\\\"\" + this.txtgroupsName.Value.ToString().Trim() + \"\\\"}}\";\r\n   string postData = \"{\\\"group\\\":{\\\"id\\\":\\\"\" + txtGroupId.Text.ToString() +\"\\\",\\\"name\\\":\\\"\"+this.txtGroupName.Text.ToString()+\"\\\"}}\";\r\n\r\n\r\n   res = wxs.GetPage(posturl, postData);\r\n\r\n\r\n   \/\/使用前需藥引用Newtonsoft.json.dll文件\r\n   JObject jsonObj = JObject.Parse(res);\r\n\r\n   \/\/\/獲取返回結果的正確|true|false,\r\n   string isright = jsonObj[\"errcode\"].ToString();\/\/0\r\n   string istrueorfalse = jsonObj[\"errmsg\"].ToString();\/\/ok\r\n   if (isright.Equals(\"0\") && istrueorfalse.Equals(\"ok\"))\r\n   {\r\n           \/\/\/修改成功之后,刷新父窗體,關閉本頁\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('修改成功!如未正常顯示,屬緩存問題,請重新登錄即可!');window.opener.location.reload();this.close();\", true);\r\n   }\r\n   else\r\n   {\r\n    ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), \"\", \"alert('修改失敗!');this.close();\", true);\r\n   }\r\n\r\n\r\n  }<\/pre><p><\/p>\n<p>? ??? ?? ??? ?? ?? ?? ?????. ??, ?? ??? ??? ??? ??? ????. <\/p>"}	</script>
    	
    <meta http-equiv="Cache-Control" content="no-transform" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
    </head>
    
    <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
    	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
    <header>
        <div   id="wjcelcm34c"   class="head">
            <div   id="wjcelcm34c"   class="haed_left">
                <div   id="wjcelcm34c"   class="haed_logo">
                    <a href="http://ipnx.cn/ko/" title="" class="haed_logo_a">
                        <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                    </a>
                </div>
                <div   id="wjcelcm34c"   class="head_nav">
                    <div   id="wjcelcm34c"   class="head_navs">
                        <a href="javascript:;" title="?? ??" class="head_nava head_nava-template1">?? ??</a>
                        <div   class="wjcelcm34c"   id="dropdown-template1" style="display: none;">
                            <div   id="wjcelcm34c"   class="languagechoose">
                                <a href="http://ipnx.cn/ko/article.html" title="??" class="languagechoosea on">??</a>
                                <a href="http://ipnx.cn/ko/faq/zt" title="??" class="languagechoosea">??</a>
                                <a href="http://ipnx.cn/ko/wenda.html" title="Q&A" class="languagechoosea">Q&A</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="wjcelcm34c"   class="head_navs">
                        <a href="javascript:;" title="???" class="head_nava head_nava-template1_1">???</a>
                        <div   class="wjcelcm34c"   id="dropdown-template1_1" style="display: none;">
                            <div   id="wjcelcm34c"   class="languagechoose">
                                <a href="http://ipnx.cn/ko/course.html" title="??" class="languagechoosea on">??</a>
                                <a href="http://ipnx.cn/ko/dic/" title="????? ??" class="languagechoosea">????? ??</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="wjcelcm34c"   class="head_navs">
                        <a href="javascript:;" title="?? ?????" class="head_nava head_nava-template1_2">?? ?????</a>
                        <div   class="wjcelcm34c"   id="dropdown-template1_2" style="display: none;">
                            <div   id="wjcelcm34c"   class="languagechoose">
                                <a href="http://ipnx.cn/ko/toolset/development-tools" title="?? ??" class="languagechoosea on">?? ??</a>
                                <a href="http://ipnx.cn/ko/toolset/website-source-code" title="???? ?? ??" class="languagechoosea">???? ?? ??</a>
                                <a href="http://ipnx.cn/ko/toolset/php-libraries" title="PHP ?????" class="languagechoosea">PHP ?????</a>
                                <a href="http://ipnx.cn/ko/toolset/js-special-effects" title="JS ?? ??" class="languagechoosea on">JS ?? ??</a>
                                <a href="http://ipnx.cn/ko/toolset/website-materials" title="???? ??" class="languagechoosea on">???? ??</a>
                                <a href="http://ipnx.cn/ko/toolset/extension-plug-ins" title="?? ????" class="languagechoosea on">?? ????</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="wjcelcm34c"   class="head_navs">
                        <a href="http://ipnx.cn/ko/ai" title="AI ??" class="head_nava head_nava-template1_3">AI ??</a>
                    </div>
    
                    <div   id="wjcelcm34c"   class="head_navs">
                        <a href="javascript:;" title="??" class="head_nava head_nava-template1_3">??</a>
                        <div   class="wjcelcm34c"   id="dropdown-template1_3" style="display: none;">
                            <div   id="wjcelcm34c"   class="languagechoose">
                                <a href="http://ipnx.cn/ko/game" title="?? ????" class="languagechoosea on">?? ????</a>
                                <a href="http://ipnx.cn/ko/mobile-game-tutorial/" title="?? ????" class="languagechoosea">?? ????</a>
    
                            </div>
                        </div>
                    </div>
                </div>
            </div>
                        <div   id="wjcelcm34c"   class="head_search">
                    <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('ko')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                    <a href="javascript:;" title="??"  onclick="searchs('ko')"><img src="/static/imghw/find.png" alt="??"></a>
                </div>
                    <div   id="wjcelcm34c"   class="head_right">
                <div   id="wjcelcm34c"   class="haed_language">
                    <a href="javascript:;" class="layui-btn haed_language_btn">???<i class="layui-icon layui-icon-triangle-d"></i></a>
                    <div   class="wjcelcm34c"   id="dropdown-template" style="display: none;">
                        <div   id="wjcelcm34c"   class="languagechoose">
                                                    <a href="javascript:setlang('zh-cn');" title="簡體中文" class="languagechoosea">簡體中文</a>
                                                    <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                    <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                    <a href="javascript:setlang('ja');" title="日本語" class="languagechoosea">日本語</a>
                                                    <a href="javascript:;" title="???" class="languagechoosea">???</a>
                                                    <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                    <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                    <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                </div>
                    </div>
                </div>
                <span id="wjcelcm34c"    class="head_right_line"></span>
                                <div style="display: block;" id="login" class="haed_login ">
                        <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                    </div>
                    <div style="display: block;" id="reg" class="head_signup login">
                        <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                    </div>
                
            </div>
        </div>
    </header>
    
    	
    	<main>
    		<div   id="wjcelcm34c"   class="Article_Details_main">
    			<div   id="wjcelcm34c"   class="Article_Details_main1">
    							<div   id="wjcelcm34c"   class="Article_Details_main1M">
    					<div   id="wjcelcm34c"   class="phpgenera_Details_mainL1">
    						<a href="http://ipnx.cn/ko/" title="?"
    							class="phpgenera_Details_mainL1a">?</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://ipnx.cn/ko/weixin-marketing.html"
    							class="phpgenera_Details_mainL1a">?? ???</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://ipnx.cn/ko/weixin-kaifa.html"
    							class="phpgenera_Details_mainL1a">?? ??</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    						<span>asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??</span>
    					</div>
    					
    					<div   id="wjcelcm34c"   class="Articlelist_txts">
    						<div   id="wjcelcm34c"   class="Articlelist_txts_info">
    							<h1 class="Articlelist_txts_title">asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??</h1>
    							<div   id="wjcelcm34c"   class="Articlelist_txts_info_head">
    								<div   id="wjcelcm34c"   class="author_info">
    									<a href="http://ipnx.cn/ko/member/13.html"  class="author_avatar">
    									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/000/013/6177b5643d1eb119.png" src="/static/imghw/default1.png" alt="高洛峰">
    									</a>
    									<div   id="wjcelcm34c"   class="author_detail">
    																			<a href="http://ipnx.cn/ko/member/13.html" class="author_name">高洛峰</a>
                                    										</div>
    								</div>
                    			</div>
    							<span id="wjcelcm34c"    class="Articlelist_txts_time">Mar 10, 2017 pm	 02:42 PM</span>
    															<div   id="wjcelcm34c"   class="Articlelist_txts_infos">
    																			<span id="wjcelcm34c"    class="Articlelist_txts_infoss on">asp.net</span>
    																			<span id="wjcelcm34c"    class="Articlelist_txts_infoss ">?? ??</span>
    																	</div>
    														
    						</div>
    					</div>
    					<hr />
    					<div   id="wjcelcm34c"   class="article_main php-article">
    						<div   id="wjcelcm34c"   class="article-list-left detail-content-wrap content">
    						<ins class="adsbygoogle"
    							style="display:block; text-align:center;"
    							data-ad-layout="in-article"
    							data-ad-format="fluid"
    							data-ad-client="ca-pub-5902227090019525"
    							data-ad-slot="3461856641">
    						</ins>
    						
    
    					<p>? ???? asp.net WeChat ?? ? ??? ?? ?? ?? ??? ?? ???? ???, ??? ???? ???? ???. </p>
    <p>?? ???? ??? ??? ??? ???? ???? ???? ??? ??????. groups.??, ? ???? ?? ?? ??? ???? ??? ???? ??? ?????. </p>
    <p style="text-align: center"><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/013/bf909086c2a848ca9d8c41d3b8f16957-0.png" class="lazy" id="theimg" alt="asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??"    style="max-width:90%"  style="max-width:90%" title="asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??"></p>
    <p>? ?? ???? ?? ??? ?? ???? ???? ? ??? ??? ???? ?????. ?? ??<br></p>
    <p class="jb51code"></p><pre class='brush:php;toolbar:false;'>
     /// <summary>
     /// 微信分組類
     /// </summary>
     public class WxGroupsInfo
     {
      public string Group_ID { get; set; }//分組編號
      public string Group_Name { get; set; }//分組名稱
      public string Group_Count { get; set; }//分組人數(shù)
     }</pre><p></p><p><strong> ??? ??? ??: </strong><br/></p><p class="jb51code"></p><pre class='brush:php;toolbar:false;'><!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <title></title>
      <link href="css/style.css" rel="Stylesheet" type="text/css" />
     <style type="text/css">
       .inputstyle { height:35px; line-height:35px; text-indent:5px; width:350px;background-image:url(&#39;images/inputbg.gif&#39;); background-repeat:repeat-x;border-top:solid 1px #a7b5bc; border-left:solid 1px #a7b5bc; border-right:solid 1px #ced9df; border-bottom:solid 1px #ced9df;margin:15px auto 15px auto;
      }
      a:hover { cursor:pointer;
      }
      .g_title { width:100%; border-bottom:2px solid #ced9df;font-size:20px; font-weight:bold; text-align:left; text-indent:5px; height:40px; line-height:40px;
      }
       th { height:35px;background-image:url(&#39;images/th.gif&#39;); background-repeat:repeat-x;
      }
       tr { height:30px;
       }
      #shownewgroup { width:300px; height:200px; background-color:white;z-index:9999; border:2px solid #DDD; top:40%; left:40%; background-color:#fff; position:fixed;margin:-100px auto auto -100px; display:none;
      }
      #shownewgroupzhezhaoceng { height:200%; width:200%; left:0px; top:0px;position:fixed; z-index:9998; background:rgb(50,50,50);background:rgba(0,0,0,0.5); display:none;
      }
      .closeLogin { height:30px; border-bottom:2px solid #31bb34; text-align:right; line-height:30px; font-size:14px; font-weight:bold;
      }
      a:hover { cursor:pointer;
      }
       .inputstyle22 { height:35px; line-height:35px; text-indent:5px; width:280px;background-image:url(&#39;images/inputbg.gif&#39;); background-repeat:repeat-x;border-top:solid 1px #a7b5bc; border-left:solid 1px #a7b5bc; border-right:solid 1px #ced9df; border-bottom:solid 1px #ced9df; float:left; margin:auto 5px auto 5px;
      }
     </style>
      <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script>
      <script type="text/javascript">
    
           //修改分組名稱調(diào)用的函數(shù)
       function EditRoster(PayNo,name) {
    
        //alert(PayNo+":"+name);
        var url = &#39;****.aspx?id=&#39; + PayNo+"&name="+name;//轉(zhuǎn)向網(wǎng)頁的地址; 
        var name = &#39;add&#39;;       //網(wǎng)頁名稱,可為空; 
        var iWidth = 600;       //彈出窗口的寬度; 
        var iHeight = 300;       //彈出窗口的高度; 
        //獲得窗口的垂直位置 
        var iTop = (window.screen.availHeight - 30 - iHeight) / 2;
        //獲得窗口的水平位置 
        var iLeft = (window.screen.availWidth - 10 - iWidth) / 2;
        window.open(url, name, &#39;height=&#39; + iHeight + &#39;,innerHeight=&#39; + iHeight + &#39;,width=&#39; + iWidth + &#39;,innerWidth=&#39; + iWidth + &#39;,top=&#39; + iTop + &#39;,left=&#39; + iLeft + &#39;,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no&#39;);
       }
    
       $(document).ready(function () {
    
        $(".newGroups").click(function () {
         $("#shownewgroupzhezhaoceng").show();
         $("#shownewgroup").show();
        }),
       $(&#39;.closeloginpage&#39;).click(function () {
        $("#shownewgroupzhezhaoceng").hide();
        $("#shownewgroup").hide();
       })
       })
     </script>
    </head>
    <body>
     <form id="form1" runat="server">
      <p class="place">
      <span>位置:</span>
      <ul class="placeul">
       <li><a href="WelCome.aspx" target="rightFrame">首頁</a></li>
       <li>微信管理</li>
       <li>德橋員工服務中心----分組管理</li>
      </ul>
      </p>
      <p class="g_title">分組管理</p>
       <p id="shownewgroup">
         <p class="closeLogin"><a class="closeloginpage"><span style="float:left; color:#08a5e0; font-size:18px; text-indent:5px;">新建分組</span>關閉</a>  </p>
        <p style="font-size:12px; height:40px; color:red; line-height:40px;">  30字符以內(nèi)</p>
        <input type="text" id="txtgroupsName" name="txtgroupsName" class="inputstyle22" maxlength="30" runat="server" value="分組名稱" onfocus="if(value==defaultValue){value=&#39;&#39;;this.style.color=&#39;#000&#39;}" onblur="if(!value){value=defaultValue;this.style.color=&#39;#999&#39;}" style="color:#999"/>
       <asp:LinkButton ID="LinkBtnCreateGroup" runat="server" OnClick="LinkBtnCreateGroup_Click"><p style="background-image:url(&#39;images/buttonbg.png&#39;); width:111px; height:35px; line-height:35px; font-weight:bold;float:left; margin-top:20px; margin-left:5px; text-align:center;color:#fff;"> 確定創(chuàng)建</p></asp:LinkButton>
         </p>
        <p id="shownewgroupzhezhaoceng"></p>
      <table style="width:1124px; margin:10px auto 10px auto; border:1px solid #ecd9df;text-align:center;">
       <asp:Repeater ID="RepeaterGroupList" runat="server" OnItemCommand="RepeaterGroupList_ItemCommand" OnItemDataBound="RepeaterGroupList_ItemDataBound">
        <HeaderTemplate>
         <tr>
          <th>序號</th>
          <th>ID編號</th>
          <th>分組名稱</th>
          <th>分組人數(shù)</th>
          <th>操作</th>
         </tr>
        </HeaderTemplate>
        <ItemTemplate>
         <tr style=&#39;background-color: <%#(Container.ItemIndex%2==0)?"#fff":"#ced9ff"%>&#39;>
          <td><asp:Label ID="lbXuHao" runat="server" Text=""></asp:Label></td>
          <td><%# Eval("Group_ID") %></td>
          <td><%# Eval("Group_Name") %></td>
          <td><%# Eval("Group_Count") %></td>
          <td>
            <a onclick="EditRoster(&#39;<%# Eval("Group_ID") %>&#39;,&#39;<%# Eval("Group_Name") %>&#39;);">修改分組名稱</a> 
             <asp:LinkButton ID="LinkBtnDeleteGroup" runat="server" CommandName="DeleteGroups" CommandArgument=&#39;<%# Eval("Group_ID") %>&#39; >刪除分組</asp:LinkButton>
          </td>
         </tr>
        </ItemTemplate>
       </asp:Repeater>
      </table>
      <a class="newGroups"><p style="background-image:url(&#39;images/buttonbg.png&#39;); width:111px; height:35px; line-height:35px; margin:10px auto 10px 28px; font-weight:bold;float:left; text-align:center;color:#fff;"> ┼ 新建分組</p></a>
     </form>
    </body>
    </html></pre><p></p><p><strong>?? ??? ??? ????. <br/></strong> </p><p class="jb51code"></p><pre class='brush:php;toolbar:false;'>protected void Page_Load(object sender, EventArgs e)
      {
       if(!Page.IsPostBack)
       {
        BindGroupList();
        this.DataBind();
       }
      }
    
      private void BindGroupList()
      {
       WeiXinServer wxs = new WeiXinServer();
    
       ///從緩存讀取accesstoken
       string Access_token = Cache["Access_token"] as string;
    
       if (Access_token == null)
       {
        //如果為空,重新獲取
        Access_token = wxs.GetAccessToken();
    
        //設置緩存的數(shù)據(jù)7000秒后過期
        Cache.Insert("Access_token", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);
       }
    
       string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);
    
       string jsonres = "";
    
       string content = Cache["AllGroups_content"] as string;
    
       if (content == null)
       {
        jsonres = "https://api.weixin.qq.com/cgi-bin/groups/get?access_token=" + Access_tokento;
    
        HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(jsonres);
        myRequest.Method = "GET";
        HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
        StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);
        content = reader.ReadToEnd();
        reader.Close();
    
        //設置緩存的數(shù)據(jù)7000秒后過期
        Cache.Insert("AllGroups_content", content, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);
       }
    
       //使用前需要引用Newtonsoft.json.dll文件
       JObject jsonObj = JObject.Parse(content);
    
    
       int groupsnum = jsonObj["groups"].Count();
    
    
       List<WxGroupsInfo> wxgrouplist = new List<WxGroupsInfo>();
       
       for (int i = 0; i < groupsnum; i++)
       {
        WxGroupsInfo wginfo = new WxGroupsInfo();
    
        wginfo.Group_ID = jsonObj["groups"][i]["id"].ToString();
    
        wginfo.Group_Name = jsonObj["groups"][i]["name"].ToString();
    
        wginfo.Group_Count = jsonObj["groups"][i]["count"].ToString();
    
        wxgrouplist.Add(wginfo);
       }
    
       this.RepeaterGroupList.DataSource = wxgrouplist;
       this.RepeaterGroupList.DataBind();
      }
      /// <summary>
      /// 綁定事件
      /// </summary>
      /// <param name="sender"></param>
      /// <param name="e"></param>
      protected void RepeaterGroupList_ItemDataBound(object sender, RepeaterItemEventArgs e)
      {
       if(e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem)
       {
        Label lbXuHao = e.Item.FindControl("lbXuHao") as Label;
    
        int num = 1;
    
        lbXuHao.Text = num.ToString();
    
        for (int i = 0; i < this.RepeaterGroupList.Items.Count;i++ )
        {
         num += 1;
         lbXuHao.Text = num.ToString();
        }
    
    
        LinkButton LinkBtnDeleteGroup = e.Item.FindControl("LinkBtnDeleteGroup") as LinkButton;
    
        LinkBtnDeleteGroup.Attributes.Add("OnClick", "return confirm(&#39;您確定要刪除該分組?刪除后該分組內(nèi)的人員即將恢復到默認分組!&#39;)");
    
       }
      }
      /// <summary>
      /// 執(zhí)行事件
      /// </summary>
      /// <param name="source"></param>
      /// <param name="e"></param>
      protected void RepeaterGroupList_ItemCommand(object source, RepeaterCommandEventArgs e)
      {
    
       //ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;刪除接口已關閉!&#39;);location=&#39;WxGroupManageList.aspx&#39;;", true);
       if (e.CommandName == "DeleteGroups")
       {
        WeiXinServer wxs = new WeiXinServer();
        string res = "";
    
        ///從緩存讀取accesstoken
        string Access_token = Cache["Access_token"] as string;
    
        if (Access_token == null)
        {
         //如果為空,重新獲取
         Access_token = wxs.GetAccessToken();
    
         //設置緩存的數(shù)據(jù)7000秒后過期
         Cache.Insert("Access_token", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);
        }
    
        string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);
    
    
        string posturl = "https://api.weixin.qq.com/cgi-bin/groups/delete?access_token=" + Access_tokento;
    
    
        //POST數(shù)據(jù)例子: POST數(shù)據(jù)例子:{"group":{"id":108}}
    
        string groupid = e.CommandArgument.ToString();
    
        string postData = "{\"group\":{\"id\":\"" + groupid.ToString() + "\"}}";
    
        res = wxs.GetPage(posturl, postData);
    
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;刪除成功!由于緩存問題,您可能需要重新登錄才能看到效果!&#39;);location=&#39;WxGroupManageList.aspx&#39;;", true);
       }
      }
      /// <summary>
      /// 創(chuàng)建分組
      /// </summary>
      /// <param name="sender"></param>
      /// <param name="e"></param>
      protected void LinkBtnCreateGroup_Click(object sender, EventArgs e)
      {
       if (this.txtgroupsName.Value.ToString().Equals("分組名稱"))
       {
        ////
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;不能為空!&#39;)", true);
        this.txtgroupsName.Focus();
        return;
       }
    
    
       WeiXinServer wxs = new WeiXinServer();
       string res = "";
    
       ///從緩存讀取accesstoken
       string Access_token = Cache["Access_token"] as string;
    
       if (Access_token == null)
       {
        //如果為空,重新獲取
        Access_token = wxs.GetAccessToken();
    
        //設置緩存的數(shù)據(jù)7000秒后過期
        Cache.Insert("Access_token", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);
       }
    
       string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);
    
    
       string posturl = "https://api.weixin.qq.com/cgi-bin/groups/create?access_token=" + Access_tokento;
    
    
       string postData = "{\"group\":{\"name\":\"" + this.txtgroupsName.Value.ToString().Trim() + "\"}}";
    
    
       res = wxs.GetPage(posturl, postData);
    
    
       ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;創(chuàng)建成功!如未顯示,請退出重新登錄即可!&#39;);location=&#39;WxGroupManageList.aspx&#39;;", true);
      }</pre><p></p><p><strong><span style="color: #800000">???? ?? ?? ??</span></strong></p><p style="text-align: center"><img src="/static/imghw/default1.png"  data-src="https://img.php.cn/upload/article/000/000/013/afa3606ea77e217108a7ce2136f92d77-1.png"  class="lazy"  id="theimg" alt="asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??"    style="max-width:90%"  style="max-width:90%" title="asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??"/></p><p><strong> ????? ??: </strong><br/></p><p class="jb51code"></p><pre class='brush:php;toolbar:false;'><!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
     <title></title>
     <style type="text/css">
      .inputstyle { height:35px; line-height:35px; text-indent:5px; width:280px;background-image:url(&#39;images/inputbg.gif&#39;); background-repeat:repeat-x;border-top:solid 1px #a7b5bc; border-left:solid 1px #a7b5bc; border-right:solid 1px #ced9df; border-bottom:solid 1px #ced9df; float:left; margin:auto 5px auto 5px;
      }
     </style>
    </head>
    <body>
     <form id="form1" runat="server">
      <table border="1" style=" width:500px; border-collapse:collapse; margin:20px auto 20px auto; line-height:40px;">
       <tr>
        <td style="text-align:right;">分組編號:</td>
        <td> <asp:TextBox ID="txtGroupId" CssClass="inputstyle" Enabled="false" runat="server"></asp:TextBox></td>
       </tr>
       <tr>
        <td style="text-align:right;">分組名稱:</td>
        <td> 
         <asp:TextBox ID="txtGroupName" CssClass="inputstyle" runat="server"></asp:TextBox>
        </td>
       </tr>
       <tr>
        <td></td>
        <td>
          <asp:LinkButton ID="LinkBtnSet" runat="server" OnClick="LinkBtnSet_Click" ><p style="background-image:url(&#39;images/buttonbg.png&#39;); width:111px; height:35px; line-height:35px; float:left; font-weight:bold;text-align:center;color:#fff;"> 設 置</p></asp:LinkButton></td>
       </tr>
      </table>
     </form>
    </body>
    </html></pre><p></p><p><strong>??? ?? : </strong><br/></p><p class="jb51code"></p><pre class='brush:php;toolbar:false;'>
     protected void Page_Load(object sender, EventArgs e)
      {
       if(!Page.IsPostBack)
       {
        if (Request.QueryString["id"] != null)
        {
         string group_id = Request.QueryString["id"].ToString();
         string group_name = Request.QueryString["name"].ToString();
         this.txtGroupId.Text = group_id.ToString();
         this.txtGroupName.Text = group_name.ToString();
         this.txtGroupName.Focus();
        }
       }
      }
      /// <summary>
      /// 設置
      /// </summary>
      /// <param name="sender"></param>
      /// <param name="e"></param>
      protected void LinkBtnSet_Click(object sender, EventArgs e)
      {
       if(String.IsNullOrWhiteSpace(this.txtGroupName.Text.ToString().Trim()))
       {
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;不能為空!&#39;);", true);
        this.txtGroupName.Focus();
        return;
       }
       if (this.txtGroupName.Text.ToString().Trim().Length>30)
       {
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;組名稱應在30個字符之內(nèi)!&#39;);", true);
        this.txtGroupName.Focus();
        return;
       }
    
       WeiXinServer wxs = new WeiXinServer();
       string res = "";
    
       ///從緩存讀取accesstoken
       string Access_token = Cache["Access_token"] as string;
    
       if (Access_token == null)
       {
        //如果為空,重新獲取
        Access_token = wxs.GetAccessToken();
    
        //設置緩存的數(shù)據(jù)7000秒后過期
        Cache.Insert("Access_token", Access_token, null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration);
       }
    
       string Access_tokento = Access_token.Substring(17, Access_token.Length - 37);
    
    
       string posturl = "https://api.weixin.qq.com/cgi-bin/groups/update?access_token=" + Access_tokento;
    
    
       //POST數(shù)據(jù)例子:POST數(shù)據(jù)例子:{"group":{"id":108,"name":"test2_modify2"}}
    
    
       //string postData = "{\"group\":{\"name\":\"" + this.txtgroupsName.Value.ToString().Trim() + "\"}}";
       string postData = "{\"group\":{\"id\":\"" + txtGroupId.Text.ToString() +"\",\"name\":\""+this.txtGroupName.Text.ToString()+"\"}}";
    
    
       res = wxs.GetPage(posturl, postData);
    
    
       //使用前需藥引用Newtonsoft.json.dll文件
       JObject jsonObj = JObject.Parse(res);
    
       ///獲取返回結果的正確|true|false,
       string isright = jsonObj["errcode"].ToString();//0
       string istrueorfalse = jsonObj["errmsg"].ToString();//ok
       if (isright.Equals("0") && istrueorfalse.Equals("ok"))
       {
               ///修改成功之后,刷新父窗體,關閉本頁
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;修改成功!如未正常顯示,屬緩存問題,請重新登錄即可!&#39;);window.opener.location.reload();this.close();", true);
       }
       else
       {
        ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert(&#39;修改失敗!&#39;);this.close();", true);
       }
    
    
      }</pre><p></p>
    <p>? ??? ?? ??? ?? ?? ?? ?????. ??, ?? ??? ??? ??? ??? ????. </p><p>? ??? asp.net WeChat ?? ? ??? ?? ??? ?? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!</p>
    
    
    						</div>
    					</div>
    					<div   id="wjcelcm34c"   class="wzconShengming_sp">
    						<div   id="wjcelcm34c"   class="bzsmdiv_sp">? ????? ??</div>
    						<div>? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.</div>
    					</div>
    				</div>
    
    				<ins class="adsbygoogle"
         style="display:block"
         data-ad-format="autorelaxed"
         data-ad-client="ca-pub-5902227090019525"
         data-ad-slot="2507867629"></ins>
    
    
    
    				<div   id="wjcelcm34c"   class="AI_ToolDetails_main4sR">
    
    
    				<ins class="adsbygoogle"
            style="display:block"
            data-ad-client="ca-pub-5902227090019525"
            data-ad-slot="3653428331"
            data-ad-format="auto"
            data-full-width-responsive="true"></ins>
        
    
    
    					<!-- <div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
    						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
    							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>?? ??</h2>
    							</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796832397.html" title="?? ?? ?? ??? | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">?? ?? ?? ??? | Uma Musume Pretty Derby</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796833110.html" title="<night> : ???? 99 ? - ?? ?? ? ?? ?? ??" class="phpgenera_Details_mainR4_bottom_title"><night> : ???? 99 ? - ?? ?? ? ?? ?? ??</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 ? ? ?</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796831605.html" title="Uma Musume Pretty Derby ?? ?? (2025 ? 7 ?)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby ?? ?? (2025 ? 7 ?)</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796831905.html" title="Windows ??? ?? ??? ??? ???? ????" class="phpgenera_Details_mainR4_bottom_title">Windows ??? ?? ??? ??? ???? ????</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By 下次還敢</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796836699.html" title="?? ? ??? ????? Rimworld Odyssey ?? ???" class="phpgenera_Details_mainR4_bottom_title">?? ? ??? ????? Rimworld Odyssey ?? ???</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
    								<a href="http://ipnx.cn/ko/article.html">???</a>
    							</div>
    						</div>
    					</div> -->
    
    
    											<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3">
    							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
    								<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>? AI ??</h2>
    								</div>
    								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
    													<h3>Undress AI Tool</h3>
    												</a>
    												<p>??? ???? ??</p>
    											</div>
    										</div>
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
    													<h3>Undresser.AI Undress</h3>
    												</a>
    												<p>???? ?? ??? ??? ?? AI ?? ?</p>
    											</div>
    										</div>
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
    													<h3>AI Clothes Remover</h3>
    												</a>
    												<p>???? ?? ???? ??? AI ?????.</p>
    											</div>
    										</div>
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
    													<h3>Clothoff.io</h3>
    												</a>
    												<p>AI ? ???</p>
    											</div>
    										</div>
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
    													<h3>Video Face Swap</h3>
    												</a>
    												<p>??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!</p>
    											</div>
    										</div>
    																</div>
    								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
    									<a href="http://ipnx.cn/ko/ai">???</a>
    								</div>
    							</div>
    						</div>
    					
    
    
    					<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
    						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
    							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>?? ??</h2>
    							</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796832397.html" title="?? ?? ?? ??? | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">?? ?? ?? ??? | Uma Musume Pretty Derby</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796833110.html" title="<night> : ???? 99 ? - ?? ?? ? ?? ?? ??" class="phpgenera_Details_mainR4_bottom_title"><night> : ???? 99 ? - ?? ?? ? ?? ?? ??</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 ? ? ?</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796831605.html" title="Uma Musume Pretty Derby ?? ?? (2025 ? 7 ?)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby ?? ?? (2025 ? 7 ?)</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796831905.html" title="Windows ??? ?? ??? ??? ???? ????" class="phpgenera_Details_mainR4_bottom_title">Windows ??? ?? ??? ??? ???? ????</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 ? ? ?</span>
    										<span>By 下次還敢</span>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/1796836699.html" title="?? ? ??? ????? Rimworld Odyssey ?? ???" class="phpgenera_Details_mainR4_bottom_title">?? ? ??? ????? Rimworld Odyssey ?? ???</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 ? ? ?</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
    								<a href="http://ipnx.cn/ko/article.html">???</a>
    							</div>
    						</div>
    					</div>
    
    
    											<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3">
    							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
    								<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>??? ??</h2>
    								</div>
    								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/toolset/development-tools/92" title="???++7.3.1" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="???++7.3.1" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/toolset/development-tools/92" title="???++7.3.1" class="phpmain_tab2_mids_title">
    													<h3>???++7.3.1</h3>
    												</a>
    												<p>???? ?? ?? ?? ???</p>
    											</div>
    										</div>
    																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/toolset/development-tools/93" title="SublimeText3 ??? ??" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 ??? ??" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/toolset/development-tools/93" title="SublimeText3 ??? ??" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 ??? ??</h3>
    												</a>
    												<p>??? ??, ???? ?? ????.</p>
    											</div>
    										</div>
    																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/toolset/development-tools/121" title="???? 13.0.1 ???" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="???? 13.0.1 ???" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/toolset/development-tools/121" title="???? 13.0.1 ???" class="phpmain_tab2_mids_title">
    													<h3>???? 13.0.1 ???</h3>
    												</a>
    												<p>??? PHP ?? ?? ??</p>
    											</div>
    										</div>
    																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/toolset/development-tools/469" title="???? CS6" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="???? CS6" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/toolset/development-tools/469" title="???? CS6" class="phpmain_tab2_mids_title">
    													<h3>???? CS6</h3>
    												</a>
    												<p>??? ? ?? ??</p>
    											</div>
    										</div>
    																			<div   id="wjcelcm34c"   class="phpmain_tab2_mids_top">
    											<a href="http://ipnx.cn/ko/toolset/development-tools/500" title="SublimeText3 Mac ??" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac ??" />
    											</a>
    											<div   id="wjcelcm34c"   class="phpmain_tab2_mids_info">
    												<a href="http://ipnx.cn/ko/toolset/development-tools/500" title="SublimeText3 Mac ??" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Mac ??</h3>
    												</a>
    												<p>? ??? ?? ?? ?????(SublimeText3)</p>
    											</div>
    										</div>
    																	</div>
    								<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
    									<a href="http://ipnx.cn/ko/ai">???</a>
    								</div>
    							</div>
    						</div>
    										
    
    					
    					<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4">
    						<div   id="wjcelcm34c"   class="phpmain1_4R_readrank">
    							<div   id="wjcelcm34c"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>??? ??</h2>
    							</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/laravel-tutori" title="??? ????" class="phpgenera_Details_mainR4_bottom_title">??? ????</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1597</span>
    										</div>
    										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>29</span>
    										</div>
    									</div>
    								</div>
    															<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://ipnx.cn/ko/faq/php-tutorial" title="PHP ????" class="phpgenera_Details_mainR4_bottom_title">PHP ????</a>
    									<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1488</span>
    										</div>
    										<div   id="wjcelcm34c"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>72</span>
    										</div>
    									</div>
    								</div>
    														</div>
    							<div   id="wjcelcm34c"   class="phpgenera_Details_mainR3_more">
    								<a href="http://ipnx.cn/ko/faq/zt">???</a>
    							</div>
    						</div>
    					</div>
    				</div>
    			</div>
    							<div   id="wjcelcm34c"   class="Article_Details_main2">
    					<div   id="wjcelcm34c"   class="phpgenera_Details_mainL4">
    						<div   id="wjcelcm34c"   class="phpmain1_2_top">
    							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
    									src="/static/imghw/index2_title2.png" alt="" /></a>
    						</div>
    						<div   id="wjcelcm34c"   class="phpgenera_Details_mainL4_info">
    
    													<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/538163.html" title="PHP WeChat ??: ??? ??? ? ?? ?? ?? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/13/2023051311410842487.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP WeChat ??: ??? ??? ? ?? ?? ?? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/538163.html" title="PHP WeChat ??: ??? ??? ? ?? ?? ?? ??" class="phphistorical_Version2_mids_title">PHP WeChat ??: ??? ??? ? ?? ?? ?? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 13, 2023 am	 11:40 AM</span>
    								<p class="Articlelist_txts_p">PHP? ? ?? ? ?? ? ?????, ?? WeChat ??? ?? ???? ?? ?? ???? ?????. ??? ?? ? ?? ??? ???? WeChat ??? PHP? ???? ???? ????. PHP? ??? ?? ???? ?? ?? ???? ?????. WeChat ???? ??? ??? ? ???? ??? ??? ???? ?? ??? ?? ??? ?????. ??? ? ??? ??? ?? ???? ?? ??? ?? ???? ??? ? ?? ????? ??? ? ? ????.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/539146.html" title="PHP WeChat ??: ?? ?? ?? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/14/2023051411211785644.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP WeChat ??: ?? ?? ?? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/539146.html" title="PHP WeChat ??: ?? ?? ?? ??" class="phphistorical_Version2_mids_title">PHP WeChat ??: ?? ?? ?? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 14, 2023 am	 11:21 AM</span>
    								<p class="Articlelist_txts_p">WeChat ?? ??? ??? ? ?? ??? ?? ?????. ?? ??? ????? ?? ??? ??? ??? ? ?? ?? ????, ??? ?? ? ?? ??? ?? ??? ????? ???. ? ????? PHP? ???? WeChat ?? ??? ???? ??? ?????. WeChat ?? ?? ??? ???? ?? WeChat ?? ?? ??? ??? ???. WeChat ?? ?????? WeChat ?? ??, ?? ?? ? ?? ??? ???? ??? API ??? ???? ???. PHP ??? ???? ???? ???? WeChat?? ????? ???? PH? ???? ???.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/538461.html" title="PHP? ???? WeChat ?? ??? ?? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/13/2023051317002079423.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP? ???? WeChat ?? ??? ?? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/538461.html" title="PHP? ???? WeChat ?? ??? ?? ??" class="phphistorical_Version2_mids_title">PHP? ???? WeChat ?? ??? ?? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 13, 2023 pm	 05:00 PM</span>
    								<p class="Articlelist_txts_p">WeChat? ??? ?? ?? ? ?? ??? WeChat? ??? ??? ???? ??????. WeChat ?? ??? ??? ??? WeChat ???? ???? ??? ?? ? ?????. ??? ?? ???? ????? ??? ?????? ?? ??? ?? ??? ?? ?????. ??? WeChat ?? ??? ??? ???? ?? ?? ?????. ? ????? PHP? ???? WeChat ?? ??? ??? ???? ??? ?????. 1. ?? ?? WeChat ?? ??? ??? ????? ?? ?? ??? ???? ???. PHP WeChat ?? ??? ??? ?? ?? ?? ?? ??: Sub</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/538502.html" title="PHP WeChat ??: ?? ??? ?? ? ?? ?? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/13/2023051317512149843.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP WeChat ??: ?? ??? ?? ? ?? ?? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/538502.html" title="PHP WeChat ??: ?? ??? ?? ? ?? ?? ??" class="phphistorical_Version2_mids_title">PHP WeChat ??: ?? ??? ?? ? ?? ?? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 13, 2023 pm	 05:51 PM</span>
    								<p class="Articlelist_txts_p">WeChat? ?? ???? ?? ? ??? ??? ??? ?? ??? ? ?????. ??? ???? ??? ?? ?? ? ?? ???? WeChat ???? ???? ??? ??????. WeChat ???? ??? ? ?? ???? ??? ?????. ?? ??? ?? ?? ? ? ???? ?? WeChat ??? PHP ??? ??? ? ????. 1. PHP ?? WeChat ?? PHP? ? ?? ???? ?? ???? ?? ?? ?? ? ???? ?????. WeChat ?? ????? ???? ?? ?????? ???? PHP ??? ???? WeChat? ??? ? ????.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/538446.html" title="PHP WeChat ??: ??? ?? ?? ?? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/13/2023051316320410288.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP WeChat ??: ??? ?? ?? ?? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/538446.html" title="PHP WeChat ??: ??? ?? ?? ?? ??" class="phphistorical_Version2_mids_title">PHP WeChat ??: ??? ?? ?? ?? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 13, 2023 pm	 04:31 PM</span>
    								<p class="Articlelist_txts_p">WeChat ?? ?? ???? ??? ?? ??? ???? ???? ? ? ???? ??? ? ??? ?? ?? ??? ?????. ? ????? PHP? ???? WeChat ??? ?? ?? ??? ???? ??? ?????. 1. WeChat ???? openid? ?????. WeChat ??? ?? ?? ??? ???? ?? ?? ???? openid? ???? ???. WeChat ?? ??? ??? ? ??? ??? ?? openid? ?? ?? ???? ?????. ??? ??? ???? ?? ??? ?? ???? ?? ? ????.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/538445.html" title="PHP WeChat ??: ?? ??? ?? ??? ???? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/13/2023051316314889614.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP WeChat ??: ?? ??? ?? ??? ???? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/538445.html" title="PHP WeChat ??: ?? ??? ?? ??? ???? ??" class="phphistorical_Version2_mids_title">PHP WeChat ??: ?? ??? ?? ??? ???? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 13, 2023 pm	 04:31 PM</span>
    								<p class="Articlelist_txts_p">WeChat? ???? ??? ?? ? ??? ?????? ??? ???, WeChat? ??? ??? ??? ?? ??? ??? ??? ??? ?? ????. ??? ?? WeChat? ??? ????? ???? ?? ??? ??? ???? WeChat ??? ???? ?? ?? ???? ????. ? ? ?? ?? ??? ?? ?? ?????. ???? PHP ??????? ?? ??? ?? ??? ??? ???? ???? ??? ??? ?????. 1. WeChat ?? ??? ??? ?? ??? ?????. ?? ??? ?? ??? ???? ??? ?????.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/567918.html" title="PHP? ???? WeChat ?? ?? ??? ???? ??" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/000/887/227/168784001718638.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP? ???? WeChat ?? ?? ??? ???? ??" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/567918.html" title="PHP? ???? WeChat ?? ?? ??? ???? ??" class="phphistorical_Version2_mids_title">PHP? ???? WeChat ?? ?? ??? ???? ??</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">Jun 27, 2023 pm	 12:26 PM</span>
    								<p class="Articlelist_txts_p">PHP? ???? WeChat ?? ??? ???? ?? WeChat ?? ??? ?? ??? ?? ? ?? ??? ?? ??? ??? ????, ????? ???? ? ??? PHP? ???? WeChat ?? ??? ??? ?? ????. ? ????? PHP? ???? WeChat ?? ??? ???? ???? ??? ?????. 1??: WeChat ?? ??? ??? ??? ????. WeChat ?? ?? ??? ???? ?? WeChat ?? ??? ??? ??? ???? ???. ???? ?? ??? WeChat ?? ??? ?? ????? ?????.</p>
    							</div>
    														<div   id="wjcelcm34c"   class="phphistorical_Version2_mids">
    								<a href="http://ipnx.cn/ko/faq/545207.html" title="WeChat ??? PHP? ???? ??? ??????" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/202305/21/2023052108380095163.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="WeChat ??? PHP? ???? ??? ??????" />
    								</a>
    								<a href="http://ipnx.cn/ko/faq/545207.html" title="WeChat ??? PHP? ???? ??? ??????" class="phphistorical_Version2_mids_title">WeChat ??? PHP? ???? ??? ??????</a>
    								<span id="wjcelcm34c"    class="Articlelist_txts_time">May 21, 2023 am	 08:37 AM</span>
    								<p class="Articlelist_txts_p">???? ??? ??? ??? ???? WeChat? ?? ? ??? ???? ???? ?? ??? ?????. ?? ? ?????? ??? WeChat ??? PHP? ???? ??? ?? ???? ??? ?????. ? ????? ?? WeChat ??? PHP? ???? ??? ?? ?? ?? ???? ?? ? ? ?? ??? ?????. 1. ?? ?? ?? WeChat? ???? ?? ?? ?? ?? ??? ???? ???. ??, PHP ?? ??? WeChat ?? ???? ???? ???.</p>
    							</div>
    													</div>
    
    													<a href="http://ipnx.cn/ko/weixin-marketing.html" class="phpgenera_Details_mainL4_botton">
    								<span>See all articles</span>
    								<img src="/static/imghw/down_right.png" alt="" />
    							</a>
    											</div>
    				</div>
    					</div>
    	</main>
    	<footer>
        <div   id="wjcelcm34c"   class="footer">
            <div   id="wjcelcm34c"   class="footertop">
                <img src="/static/imghw/logo.png" alt="">
                <p>???? ??? PHP ??,PHP ???? ?? ??? ?????!</p>
            </div>
            <div   id="wjcelcm34c"   class="footermid">
                <a href="http://ipnx.cn/ko/about/us.html">?? ??</a>
                <a href="http://ipnx.cn/ko/about/disclaimer.html">?? ??</a>
                <a href="http://ipnx.cn/ko/update/article_0_1.html">Sitemap</a>
            </div>
            <div   id="wjcelcm34c"   class="footerbottom">
                <p>
                    ? php.cn All rights reserved
                </p>
            </div>
        </div>
    </footer>
    
    <input type="hidden" id="verifycode" value="/captcha.html">
    
    
    
    
    		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
    	
    	
    	
    	
    	
    
    	
    	
    
    
    
    
    
    
    <footer>
    <div class="friendship-link">
    <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
    <a href="http://ipnx.cn/" title="亚洲国产日韩欧美一区二区三区">亚洲国产日韩欧美一区二区三区</a>
    
    <div class="friend-links">
    
    
    </div>
    </div>
    
    </footer>
    
    
    <script>
    (function(){
        var bp = document.createElement('script');
        var curProtocol = window.location.protocol.split(':')[0];
        if (curProtocol === 'https') {
            bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
        }
        else {
            bp.src = 'http://push.zhanzhang.baidu.com/push.js';
        }
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(bp, s);
    })();
    </script>
    </body><div id="lhgrp" class="pl_css_ganrao" style="display: none;"><menu id="lhgrp"></menu><pre id="lhgrp"></pre><object id="lhgrp"><p id="lhgrp"></p></object><rp id="lhgrp"><b id="lhgrp"></b></rp><option id="lhgrp"><kbd id="lhgrp"><address id="lhgrp"><strike id="lhgrp"></strike></address></kbd></option><code id="lhgrp"><optgroup id="lhgrp"><em id="lhgrp"></em></optgroup></code><xmp id="lhgrp"></xmp><optgroup id="lhgrp"><track id="lhgrp"><del id="lhgrp"></del></track></optgroup><big id="lhgrp"></big><strike id="lhgrp"></strike><dl id="lhgrp"><legend id="lhgrp"></legend></dl><thead id="lhgrp"></thead><track id="lhgrp"><u id="lhgrp"></u></track><strong id="lhgrp"></strong><progress id="lhgrp"><form id="lhgrp"></form></progress><mark id="lhgrp"><dd id="lhgrp"><progress id="lhgrp"><pre id="lhgrp"></pre></progress></dd></mark><blockquote id="lhgrp"><menu id="lhgrp"></menu></blockquote><small id="lhgrp"><output id="lhgrp"></output></small><center id="lhgrp"><abbr id="lhgrp"><button id="lhgrp"></button></abbr></center><xmp id="lhgrp"><wbr id="lhgrp"><sup id="lhgrp"><bdo id="lhgrp"></bdo></sup></wbr></xmp><s id="lhgrp"><var id="lhgrp"><form id="lhgrp"></form></var></s><tfoot id="lhgrp"></tfoot><acronym id="lhgrp"><p id="lhgrp"></p></acronym><em id="lhgrp"></em><progress id="lhgrp"><p id="lhgrp"><menu id="lhgrp"><nobr id="lhgrp"></nobr></menu></p></progress><source id="lhgrp"><menuitem id="lhgrp"><span id="lhgrp"><dl id="lhgrp"></dl></span></menuitem></source><menuitem id="lhgrp"><sub id="lhgrp"></sub></menuitem><pre id="lhgrp"><xmp id="lhgrp"></xmp></pre><ol id="lhgrp"><font id="lhgrp"><tr id="lhgrp"><td id="lhgrp"></td></tr></font></ol><abbr id="lhgrp"><rp id="lhgrp"><delect id="lhgrp"></delect></rp></abbr><sup id="lhgrp"></sup><option id="lhgrp"></option><acronym id="lhgrp"><legend id="lhgrp"></legend></acronym><menuitem id="lhgrp"><td id="lhgrp"><ol id="lhgrp"><i id="lhgrp"></i></ol></td></menuitem><table id="lhgrp"><optgroup id="lhgrp"></optgroup></table><xmp id="lhgrp"><big id="lhgrp"></big></xmp><center id="lhgrp"><progress id="lhgrp"></progress></center><big id="lhgrp"><object id="lhgrp"></object></big><thead id="lhgrp"><tbody id="lhgrp"><wbr id="lhgrp"><object id="lhgrp"></object></wbr></tbody></thead><progress id="lhgrp"></progress><button id="lhgrp"><delect id="lhgrp"></delect></button><nobr id="lhgrp"><ins id="lhgrp"><progress id="lhgrp"><wbr id="lhgrp"></wbr></progress></ins></nobr><nav id="lhgrp"></nav><pre id="lhgrp"></pre><th id="lhgrp"></th><abbr id="lhgrp"></abbr><ol id="lhgrp"></ol><nobr id="lhgrp"></nobr><track id="lhgrp"></track><strong id="lhgrp"><var id="lhgrp"><label id="lhgrp"><em id="lhgrp"></em></label></var></strong><small id="lhgrp"><abbr id="lhgrp"><tt id="lhgrp"></tt></abbr></small><pre id="lhgrp"></pre><abbr id="lhgrp"></abbr><output id="lhgrp"></output><button id="lhgrp"></button><big id="lhgrp"><source id="lhgrp"><p id="lhgrp"><fieldset id="lhgrp"></fieldset></p></source></big><font id="lhgrp"><ins id="lhgrp"></ins></font><label id="lhgrp"></label><sup id="lhgrp"></sup><meter id="lhgrp"><td id="lhgrp"></td></meter><small id="lhgrp"></small><dfn id="lhgrp"><ruby id="lhgrp"></ruby></dfn><strike id="lhgrp"><p id="lhgrp"><menu id="lhgrp"><nobr id="lhgrp"></nobr></menu></p></strike><form id="lhgrp"></form><video id="lhgrp"></video><pre id="lhgrp"></pre><dfn id="lhgrp"></dfn><strong id="lhgrp"></strong><nav id="lhgrp"><th id="lhgrp"></th></nav><dl id="lhgrp"></dl><dfn id="lhgrp"></dfn><optgroup id="lhgrp"><track id="lhgrp"></track></optgroup><center id="lhgrp"></center><dd id="lhgrp"></dd><nav id="lhgrp"><th id="lhgrp"><b id="lhgrp"></b></th></nav><form id="lhgrp"><dl id="lhgrp"></dl></form><s id="lhgrp"></s><u id="lhgrp"><font id="lhgrp"><delect id="lhgrp"></delect></font></u><menuitem id="lhgrp"></menuitem><menuitem id="lhgrp"><div id="lhgrp"><rt id="lhgrp"></rt></div></menuitem><sup id="lhgrp"></sup><i id="lhgrp"></i><progress id="lhgrp"></progress><cite id="lhgrp"></cite><dl id="lhgrp"><i id="lhgrp"></i></dl><div id="lhgrp"><tfoot id="lhgrp"></tfoot></div><dfn id="lhgrp"><div id="lhgrp"><dl id="lhgrp"></dl></div></dfn><cite id="lhgrp"></cite><center id="lhgrp"></center><label id="lhgrp"><pre id="lhgrp"><var id="lhgrp"></var></pre></label><mark id="lhgrp"></mark><pre id="lhgrp"><tt id="lhgrp"><mark id="lhgrp"><ins id="lhgrp"></ins></mark></tt></pre><thead id="lhgrp"></thead><ruby id="lhgrp"></ruby><big id="lhgrp"><acronym id="lhgrp"><p id="lhgrp"><fieldset id="lhgrp"></fieldset></p></acronym></big><video id="lhgrp"><del id="lhgrp"></del></video><pre id="lhgrp"></pre><div id="lhgrp"></div><em id="lhgrp"></em><dl id="lhgrp"></dl><center id="lhgrp"><progress id="lhgrp"><pre id="lhgrp"><sup id="lhgrp"></sup></pre></progress></center><acronym id="lhgrp"><nav id="lhgrp"></nav></acronym><s id="lhgrp"></s><dfn id="lhgrp"><strike id="lhgrp"><rt id="lhgrp"><legend id="lhgrp"></legend></rt></strike></dfn><nobr id="lhgrp"><form id="lhgrp"><video id="lhgrp"></video></form></nobr><ins id="lhgrp"><xmp id="lhgrp"><pre id="lhgrp"><span id="lhgrp"></span></pre></xmp></ins><legend id="lhgrp"><dfn id="lhgrp"><track id="lhgrp"></track></dfn></legend><label id="lhgrp"><video id="lhgrp"><small id="lhgrp"></small></video></label><sub id="lhgrp"><tfoot id="lhgrp"></tfoot></sub><center id="lhgrp"></center><strong id="lhgrp"><nav id="lhgrp"></nav></strong><input id="lhgrp"><xmp id="lhgrp"><rt id="lhgrp"></rt></xmp></input><meter id="lhgrp"><td id="lhgrp"></td></meter><del id="lhgrp"><sup id="lhgrp"></sup></del><strong id="lhgrp"><form id="lhgrp"><sup id="lhgrp"></sup></form></strong><output id="lhgrp"></output><ins id="lhgrp"></ins><small id="lhgrp"><output id="lhgrp"></output></small><mark id="lhgrp"><address id="lhgrp"></address></mark><span id="lhgrp"></span><dfn id="lhgrp"><ruby id="lhgrp"><font id="lhgrp"><tr id="lhgrp"></tr></font></ruby></dfn><samp id="lhgrp"></samp><span id="lhgrp"></span><dfn id="lhgrp"></dfn><menuitem id="lhgrp"><span id="lhgrp"><dl id="lhgrp"><small id="lhgrp"></small></dl></span></menuitem><dl id="lhgrp"></dl><samp id="lhgrp"><pre id="lhgrp"></pre></samp><dfn id="lhgrp"><rp id="lhgrp"><b id="lhgrp"><del id="lhgrp"></del></b></rp></dfn><th id="lhgrp"></th><s id="lhgrp"><nav id="lhgrp"></nav></s><sub id="lhgrp"></sub><optgroup id="lhgrp"></optgroup><option id="lhgrp"><ins id="lhgrp"><address id="lhgrp"></address></ins></option><pre id="lhgrp"></pre><em id="lhgrp"><big id="lhgrp"></big></em><center id="lhgrp"></center><li id="lhgrp"><ul id="lhgrp"><ins id="lhgrp"><font id="lhgrp"></font></ins></ul></li><xmp id="lhgrp"><pre id="lhgrp"></pre></xmp><s id="lhgrp"></s><acronym id="lhgrp"><legend id="lhgrp"><sup id="lhgrp"></sup></legend></acronym><sub id="lhgrp"><blockquote id="lhgrp"></blockquote></sub><fieldset id="lhgrp"><bdo id="lhgrp"></bdo></fieldset><big id="lhgrp"><source id="lhgrp"><label id="lhgrp"></label></source></big><pre id="lhgrp"></pre><strike id="lhgrp"></strike><small id="lhgrp"><u id="lhgrp"><rp id="lhgrp"><xmp id="lhgrp"></xmp></rp></u></small><th id="lhgrp"><b id="lhgrp"></b></th><blockquote id="lhgrp"><span id="lhgrp"></span></blockquote></div>
    
    </html>