📄 viewuser.asp
字号:
<!--#include file="conn.asp"-->
<%
dim id
id=trim(request("id"))
set rs=server.createobject("adodb.recordset")
sql="select * from st_info where id="& id
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>查看备注情况</title>
<link rel="stylesheet" href="style.css">
</head>
<body topmargin="0" background="../2s/images/bj.jpg" style="background-attachment: fixed">
<SCRIPT language=javascript>
function fucCheckNUM(NUM)
{
var i,j,strTemp;
strTemp="0123456789.";
if ( NUM.length== 0)
return 0
for (i=0;i<NUM.length;i++)
{
j=strTemp.indexOf(NUM.charAt(i));
if (j==-1)
{
//说明有字符不是数字
return 0;
}
}
//说明是数字
return 1;
}
function checknum(theform)
{
if ((fucCheckNUM(theform.value)==0) )
{
theform.value="";
//theform.newprice.focus();
return false;
}
}
</SCRIPT>
<div align="center">
<center>
<table width="500">
<form method="POST" action="add_ach.asp">
</form>
</table>
</center>
</div>
<div align="center">
<center>
<table border="0" width="448" cellspacing="0" cellpadding="0">
<tr>
<td width="93%">
<table border="1" width="100%" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="91%" colspan="2">
<p align="center">查看备注情况</td>
</tr>
<tr>
<td width="18%" align="right">备注信息:</td>
<td width="71%" align="left"><%=rs("user_info")%><p></td>
</tr>
<tr>
<td width="91%" align="right" valign="top" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</div>
<!--#include file="down.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -