statement.asp

来自「ASP企业网络管理系统」· ASP 代码 · 共 39 行

ASP
39
字号
<%@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">&nbsp;</td>
  </tr>
</table>
</body>
<%
End If
Session("rs").close
%>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?