57 lines
2.0 KiB
Plaintext
57 lines
2.0 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="openid.aspx.cs" Inherits="SystemManage_openid" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title>绑定微信公众号</title>
|
|
<style type="text/css">
|
|
.pic_text {
|
|
color: Red;
|
|
}
|
|
|
|
.pic_label {
|
|
color: Gray;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.pic_image {
|
|
margin: 5px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
//获取url的get参数 decodeURI中文编码
|
|
function getQueryString(name) {
|
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
|
|
var r = window.location.search.substr(1).match(reg);
|
|
if (r != null) {
|
|
return decodeURI(r[2]);
|
|
}
|
|
return "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<table id="PrintHide" style="width: 100%" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td valign="middle" style="border-bottom: #006633 1px dashed; height: 30px;"> <img src="../images/BanKuaiJianTou.gif" />
|
|
<a class="hei" href="../Main/MyDesk.aspx">桌面</a> >> 系统管理 >> 绑定微信公众号
|
|
</td>
|
|
<td align="right" valign="middle" style="border-bottom: #006633 1px dashed; height: 30px;">
|
|
<img class="HerCss" onclick="javascript:window.history.go(-1)" src="../images/Button/BtnExit.jpg" /> </td>
|
|
</tr>
|
|
<tr>
|
|
<td height="3px" colspan="2" style="background-color: #ffffff"></td>
|
|
</tr>
|
|
</table>
|
|
<div class="pic_image">
|
|
<asp:Label ID="lbl_pic" runat="server" class="pic_text"></asp:Label>
|
|
<div>
|
|
<asp:Image ID="Image1" runat="server" Height="180px" Width="180px" />
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|