📄 statement.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../include/config.asp" -->
<html>
<head>
<title>会员章程</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
</head>
<%
dim str
str = "select * from statement where id = 1"
Session("rs").open str,Session("conn")
if not Session("rs").eof then
%>
<body>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="30" align="center"> <input name="title" type="text" readonly="true" class="showonly" value="<%= Session("rs")("title") %>" style="font-size:20px;"></td>
</tr>
<tr>
<td align="center"> <textarea name="statement" style="width:400" rows="10" readonly class="showonly"><%= Session("rs")("content") %></textarea>
</td>
</tr>
<tr>
<td align="center"> <input name="Button" type="button" id="Submit" onclick="javascript:window.navigate('register_member.asp')" value="同 意">
<input onclick="javascript:history.back()" type="button" value="不同意" align="center" class="button1" name="button222">
</td>
</tr>
<tr>
<td align="center"> </td>
</tr>
</table>
</body>
<%
End If
Session("rs").close
%>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -