📄 admin_needsoftmodify.asp
字号:
<!--#include file="function.asp"-->
<%CheckAdmin2%>
<!--#include file="conn.asp"-->
<!--#include file="const.asp"-->
<!--#include file="top.asp"-->
<!--#include file="INC/CHAR.INC"-->
<%
founderr=false
id=request.QueryString("id")
set rs=server.createobject("adodb.recordset")
sql="select * from NeedSoft where id="&id
rs.open sql,conn,1,1
if rs.eof then
errmsg="<li>操作错误!该管理员不存在"
founderr=true
else
NeedSoftName=rs("NeedSoftName")
NeedSoftUrl=rs("NeedSoftUrl")
NeedSoftPic=rs("NeedSoftPic")
end if
rs.close
if founderr=true then
call error()
else
%>
<div align="center">
<center>
<table border="0" width="750" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111" height="171">
<tr>
<td valign=top width="5" height="198" background="images/line_bg02.gif">
<img border="0" src="images/line_bg02.gif"></td>
<td valign=top width="175" height="198"><!--#include file="admin_left.asp"--></td>
<td valign=top width="5" height="198" background="images/line_bg02.gif"> </td>
<td align=center valign=top width="593" height="198">
<table border="1" width="100%" cellspacing="0" cellpadding="0" class="TableLine" style="border-collapse: collapse" bordercolor="#35787B">
<form method="POST" action="admin_NeedSoftSave.asp?id=<%=id%>">
<tr>
<td width="100%" height="20" colspan=2 bgcolor="#234156" align=center><b>必 备 工 具 管 理</b></td>
</tr>
<tr>
<td width="30%" align="right">工具名称:</td>
<td width="70%"><input type="text" name="NeedSoftName" value="<%=NeedSoftName%>" size="20"></td>
</tr>
<tr>
<td align="right">工具图片地址:</td>
<td><input type="text" name="NeedSoftPic" value="<%=NeedSoftPic%>" size="20"></td>
</tr>
<tr>
<td align="right">工具下载地址:</td>
<td><input type="text" name="NeedSoftUrl" value="<%=NeedSoftUrl%>" size="20"></td>
</tr>
<tr>
<td colspan=2 align=center>
<input type="hidden" value="edit" name="act">
<input type="submit" value=" 修 改 " name="cmdok">
<input type="reset" value=" 清 除 " name="cmdcancel">
</td>
</tr>
</form>
</table>
</td>
<td align=center valign=top width="5" height="198" background="images/line_bg02.gif">
</td>
</tr>
<tr>
<td valign=top width="750" height="1" colspan="5" background="images/line_bg01.gif">
<img border="0" src="images/line_bg01.gif"></td>
</tr>
</table>
</center>
</div>
<%
end if
set rs=nothing
conn.close
set conn=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -