?? 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>標(biāo)題 </td>
<td><input name="title" type="text"></td>
<td>聯(lián)系人</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">地區(qū)</td>
<td width="140"> <input name="region" type="text" id="region" value="<%= session("rs")("region") %>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="4">詳細(xì)內(nèi)容</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
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -