📄 downclass_mod.asp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--#include file="../Inc/Conn.asp" -->
<!--#include file="Check.asp" -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="style.css" type=text/css rel=stylesheet>
<style type="text/css">
<!--
.STYLE1 {color: #FF0000}
-->
</style>
</head>
<body leftmargin=0 bottommargin=0 rightmargin=0 topmargin=0>
<script src="images/admin.js" type="text/javascript"></script>
<div class=menuskin id=popmenu
onmouseover="clearhidemenu();highlightmenu(event,'on')"
onmouseout="highlightmenu(event,'off');dynamichide(event)" style="Z-index:100"></div>
<div align=center>
<!--#include file="Top.asp" -->
<%
id=Request("ID")
Set rs=server.CreateObject("adodb.recordset")
rs.open "select * from DownClass where ID="&ID,Conn,1,1
%>
<form name="AddForm" method="post" action="DownClass_OK.asp">
<table cellpadding="2" cellspacing="1" border="0" width="96%" class="tableBorder" align=center>
<tr>
<th colspan=3 height=25>修改下载类别</th>
</tr>
<tr><td class=BodyTitle colspan=3 height=23 style="FONT-SIZE: 9pt; FILTER: dropshadow(color=#FFFFFF,offx=1,offy=1); COLOR: #000000;"> </td>
</tr>
<tr>
<td height=24 align="right" class="forumRowHighlight">类别名称:</td>
<td width="65%" colspan="2" class="forumRow"><input name="Title" type="text" id="Title" value="<%=rs("Title")%>" size="40">
<input name="act" type="hidden" id="act" value="mod">
<input name="ID" type="hidden" id="ID" value="<%=ID%>"></td>
</tr>
<tr>
<td width="35%" height=24 align="right" class="forumRowHighlight"> 英文名称:</td>
<td colspan="2" class="forumRow"><input name="EnTitle" type="text" id="EnTitle" value="<%=rs("EnTitle")%>" size="40"></td>
</tr>
<tr>
<td height=25 colspan=3 align="center" class="forumRow"><input type="submit" name="Submit" value=" 保 存 " onClick="CheckForm()">
<input type="reset" name="Submit2" value=" 重 置 "></td>
</tr>
</table>
</form>
<%
rs.close
set rs=nothing
%>
<BR>
<BR>
</div>
</body></html>
<script language="vbscript">
sub CheckForm()
if Trim(document.AddForm.Title.value)="" then
alert("请输入下载类别的名称!")
document.AddForm.Title.focus()
window.event.returnvalue=false
exit sub
end if
end sub
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -