📄 reply_trade_info.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../include/config.asp" -->
<%
dim info_id,replier
info_id = Request.Form("info_id")
replier = Session("member_id")
session("sqlString") = "select * from v_member where id = " & replier
session("rs").open session("sqlString"),session("conn")
if not Session("rs").eof then
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form action="../trade/admin_reply_info.asp" method="post" name="frm_reply">
<table width="400" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#dddddd">
<tr bgcolor="#FFFFFF">
<td>标题 </td>
<td><input name="title" type="text"></td>
<td>联系人</td>
<td><input name="contact" type="text" id="contact" value="<%= session("rs")("name") %>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="60">电话</td>
<td width="140"> <input name="phone" type="text" id="phone" value="<%= session("rs")("phone") %>">
</td>
<td width="60">传真</td>
<td width="140"> <input name="fax" type="text" id="fax" value="<%= session("rs")("fax") %>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="60">Email</td>
<td width="140"> <input name="email" type="text" id="email" value="<%= session("rs")("email")%> "></td>
<td width="60">地区</td>
<td width="140"> <input name="region" type="text" id="region" value="<%= session("rs")("region") %>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="4">详细内容</td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="4"><textarea name="content" id="content" style="height:100;width:400;"></textarea></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>备注</td>
<td colspan="3"><input name="memo" type="text" id="memo" style="width:348;"></td>
</tr>
<tr align="center" bgcolor="#FFFFFF">
<td colspan="4"><input type="submit" name="Submit" value="提 交">
<input name="action" type="hidden" value="insert">
<input name="replier" type="hidden" id="replier" value="<%= replier %>">
<input name="info_id" type="hidden" value="<%= info_id %>">
<input name="reset" type="reset" id="reset" value="重 置"></td>
</tr>
</table>
</form>
</body>
</html>
<%
else
Response.Write("no member!")
end if
Session("rs").close
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -