求大神看一下代码。
<%id=request.QueryString("id")
if id="" then response.Redirect("index.asp")
set rs = server.CreateObject("adodb.recordset")
exec="select * from [user] where id="&id
rs.open exec,conn,1,1
%>
<%do while not rs.eof%>
<html>
<head>
<title>修改系统</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body background="images/tbg.JPG">
<body bgcolor="#ffffff" text="#000000" onunload="window.opener.location.reload();">
<p align="center"><font face="宋体" size="2" color="#ff0000">修改模块</font><font size="2"><br><br>
</font><form action="usersave.asp?id=<%=Request("id")%>" "method=post">
<table width="71%" border="0" cellpadding="0" cellspacing="0" align="center" id="table1">
<tr>
<td align="left">
<p align="justify"><font size="2">姓名:</font></td>
<td>
<input type="text" name="姓名" size="20" value="<%=rs("姓名")%>"><font size="2"> </font></td>
</tr>
。。。