<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="cndb.asp"-->
<%
dim reback,iid
iid=request("id")
reback=request.form("reback")
if reback<>""and id<>"" then
sql="select * from cndb where id="&iid
rs.open sql,cn,3,2
if not rs.eof then
rs.addnew
rs("reback")=reback
rs.update
rs.close
set rs=nothing
response.Redirect("留言板.asp")
response.end
else
response.Write("更新不了")
end if
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<link href="作品/images/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form" name="form" method="post" action="reback.asp">
<table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="99" height="83"><div align="center">回复内容</div></td>
<td width="201"><label>
<textarea name="reback" id="reback" cols="50" rows="8" class="bg_b05"></textarea>
</label></td>
</tr>
<tr>
<td height="43" colspan="2"><label>
<input type="submit" name="Submit" value="回复" />
<input type="reset" name="Submit2" value="重置" />
</label></td>
</tr>
</table>
</form>
</body>
</html>