?? lxmod.asp
字號:
<!--#include file="checkUser.asp"-->
<!--#include file="../include/bkconn.asp"-->
<%
dim rs,sql
dim intID
intID=Request("id")
set rs=server.createobject("adodb.recordset")
sql="select * from lx where id="&intID
rs.open sql,conn,1,1
%>
<html>
<head>
<title>后臺管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../main.css" type="text/css">
</head>
<body bgcolor="#9CC7EF" text="#000000" leftmargin="0" topmargin="3">
<%if not (rs.eof or err) then %>
<form name="form1" action="lxsave.asp" method="post">
<table width="98%" border="1" bordercolordark=#9CC7EF bordercolorlight=#145AA0 cellspacing="0" cellpadding="2" align="center">
<tr bgcolor="#4296E7">
<td height="26"> <div align="center"><font color="#FFFFFF">修改信息</font></div></td>
</tr>
<tr>
<td nowrap><%=rs("title")%>
<input type="hidden" name="id" value="<%=intID%>">
<input type="hidden" name="title" value="<%=rs("title")%>"></td>
</tr>
<tr>
<td nowrap>內(nèi)容 </td>
</tr>
<tr>
<td nowrap> <textarea name="content" cols="78" rows="20"><%=rs("content")%></textarea>
</td>
</tr>
<tr bgcolor="#4296E7">
<td height="24"> <div align="center">
<input type="submit" name="Submit" value="修改">
<input type="button" name="Submit2" value="返回" onClick="window.location='<%=session("adminOldUrl")%>'">
</div></td>
</tr>
</table>
</form>
<%else %>
無該記錄,請<a href="Javascript:window.history.go(-1)">返回</a>
<%end if %>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -