📄 admin_sitecolormana.asp
字号:
<%PageName="admin_SiteColorMana"%>
<!--#include file="session.asp"-->
<%checkAdmin3%>
<!--#include file="conn.asp"-->
<!--#include file="const.asp"-->
<!--#include file="top.asp"--><br>
<table border="1" width="80%" cellspacing="0" cellpadding="1" bgcolor="<%=MainBgColor%>">
<tr>
<td align=center valign=top>
<table border="1" width="100%" cellspacing="0" cellpadding="0" Class="TableLine" bordercolorlight="<%=MainBColor%>" bgcolor="<%=MainCColor%>">
<form method="POST" action="admin_SiteColorSet.asp">
<tr>
<td width="100%" height="20" colspan=5 bgcolor="<%=MainTColor%>" align=center background="images/admin/b3.gif"><b>管
理 网 站 颜 色</b></td>
</tr>
<tr>
<td width="10%" align="center">选择</td>
<td width="10%" align="center">ID</td>
<td width="60%" align="center">方案名称</td>
<td width="10%" align="center">修改</td>
<td width="10%" align="center">删除</td>
</tr>
<%
sql="select * from SiteColor order by id"
rs.open sql,conn,1,1
do while not rs.eof
%>
<tr>
<td width="10%" align="center">
<input type="radio" value=<%=rs("ID")%><%if rs("Ischecked")=true then%> checked<%end if%> name="checked">
</td>
<td width="10%" align="center"><%=rs("ID")%></td>
<td width="60%" align="center"><%=rs("ColorName")%></td>
<td width="10%" align="center">
<input onclick="javascript:window.open('admin_SiteColorModify.asp?id=<%=rs("ID")%>&ColorName=<%=rs("ColorName")%>','_self','')" type="button" value="修改" name="button1">
</td>
<td width="10%" align="center">
<input onclick="javascript:window.open('admin_SiteColorDel.asp?id=<%=rs("ID")%>&ColorName=<%=rs("ColorName")%>&Ischecked=<%=rs("Ischecked")%>','_self','')" type="button" value="删除" name="button2">
</td>
</tr>
<%
rs.movenext
loop
rs.close
%>
<tr>
<td colspan=5 align=center>
<input type="submit" value="选定方案" name="submit">
<input onclick="javascript:window.open('admin_SiteColorAdd.asp','_self','')" type="button" value="添加新方案" name="button">
</td>
</tr>
</form>
</table>
<br>
<br>
<table border="0" cellspacing="5" cellpadding="0">
<tr>
<td>提示:</td>
</tr>
<tr>
<td>1.为防止修改混乱和错用CSS代码,"默认"方案不能修改和删除。</td>
</tr>
<tr>
<td>2.不能删除当前已选定的方案,请改选其它方案后再删除。</td>
</tr>
</table>
<p> </p>
</td>
</tr>
</table>
<%set rs=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -