📄 admin_needsoftmana.asp
字号:
<!--#include file="function.asp"-->
<%CheckAdmin2%>
<!--#include file="conn.asp"-->
<!--#include file="const.asp"-->
<!--#include file="top.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from NeedSoft order by id desc"
rs.open sql,conn,1,1
%>
<div align="center">
<center>
<table border="0" width="750" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111" height="1">
<tr>
<td valign=top width="5" height="1" background="images/line_bg02.gif">
<img border="0" src="images/line_bg02.gif"></td>
<td valign=top width="175" height="1"><!--#include file="admin_left.asp"--></td>
<td valign=top width="5" height="1" background="images/line_bg02.gif"> </td>
<td align=center valign=top width="594" height="1">
<table border="1" width="100%" cellspacing="0" cellpadding="0" class="TableLine" style="border-collapse: collapse" bordercolor="#2E5F6B">
<tr>
<td width="100%" height="20" colspan=5 bgcolor="#234156" align=center><b>必 备 工 具 管 理</b></td>
</tr>
<tr>
<td width="10%" align="center">ID</td>
<td width="30%" align="center">工具名称</td>
<td width="40%" align="center">工具图片/地址</td>
<td width="10%" align="center">修改</td>
<td width="10%" align="center">删除</td>
</tr>
<%
do while not rs.eof
%>
<tr>
<td width="10%" align="center"><%=rs("ID")%> </td>
<td width="30%" align="center"><%=rs("NeedSoftName")%> </td>
<td width="40%" align="center"><a href="<%=rs("NeedSoftUrl")%>"><img src="<%=rs("NeedSoftPic")%>" border=0 alt="<%=rs("NeedSoftUrl")%>"></a></td>
<td width="10%" align="center"><input onclick="javascript:window.open('admin_NeedSoftModify.asp?id=<%=rs("ID")%>','_self','')" type="button" value="修改" name="button1"></td>
<td width="10%" align="center"><input onclick="javascript:window.open('admin_NeedSoftDel.asp?id=<%=rs("ID")%>','_self','')" type="button" value="删除" name="button2"></td>
</tr>
<%
rs.movenext
loop
rs.close
%>
<tr>
<td colspan=5 align=center><input onclick="javascript:window.open('admin_NeedSoftAdd.asp','_self','')" type="button" value="添加新工具" name="button"></td>
</tr>
</table>
</td>
<td align=center valign=top width="5" height="1" 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>
<%
set rs=nothing
conn.close
set conn=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -