viewuser.asp
来自「社区天地图文系统(核心:尘缘雅境图文系统) 版本: 1.0 本系统是ASP」· ASP 代码 · 共 90 行
ASP
90 行
<!--#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 + =
减小字号Ctrl + -
显示快捷键?