edit_flash_class.asp
来自「flash网站用asp编写的聊天室,简单易懂 适合初学者学习应用,可以对付一般的」· ASP 代码 · 共 45 行
ASP
45 行
<!--#include file="session.asp"-->
<!--#include file="conn.asp"-->
<%
ClassID=request("ClassID")
set rs=server.createobject("adodb.recordset")
sql="select * from FlashClass where Classid="&request("Classid")
rs.open sql,conn,1,1
%>
<html>
<head>
<title>修改类别</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="author" content="Thirdsnow;Email:3snow@163.com;QQ:518655">
<link rel="stylesheet" href="/css/style.css" type="text/css">
</head>
<body bgcolor="#EBEBEB" text="#000000" topmargin="0">
<form method="post" action="save_flash_class.asp" name="class">
<table width="500" border="0" cellspacing="1" cellpadding="0" align="center">
<tr>
<td width="120" height="40" align="center">类别名称:</td>
<td height="40">
<input type="text" name="classname" size="50" class="button" maxlength="100" value="<%=rs("classname")%>">
</td>
</tr>
<tr align="center">
<td colspan="2" height="40">
<input type="hidden" name="classid" value="<%=rs("classid")%>">
<input type="hidden" name="action" value="edit">
<input type="submit" name="Submit" value="提交" class="button">
<input type="reset" name="reset" value="重新填写" class="button">
</td>
</tr>
</table>
</form>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?