📄 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>内容 </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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -