📄 hyfw_01_0.asp
字号:
<!--#include file="function/m_conn.asp"-->
<!--#include file="../../config.asp"-->
<%
aboutid=request.querystring("aboutid")
if aboutid<>"" and isnumeric(aboutid) then
sql="delete from about where about_id="&aboutid
conn.execute (sql)
end if
set rs=server.CreateObject("adodb.recordset")
sql="select * from about "
rs.open sql,conn,1,3
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=ZXLCompanyStr%>后台管理服务在线</title>
<link href="RLimages/user.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" align="right" bgcolor="#FFFFFF"><!--<a href="hyfw_01_01.asp?AddFlag=true" >增加服务内容</a> --></td>
</tr>
</table>
<TABLE cellPadding=0 cellSpacing=1 >
<TR bgcolor="#FFFFFF">
<TD width="32%" height="25" align="center" ><strong>通知内容</strong></TD>
<TD width="31%" align="center" ><strong>信息来源</strong></TD>
<TD width="18%" align="center" ><strong>时间</strong></TD>
<TD width="19%" align="center" ><strong>操作</strong></TD>
</TR>
<%
if not rs.eof then
do while not rs.eof
about_id=rs("about_id")
about1=trim(rs("about1"))
about2=trim(rs("about2"))
about4=trim(rs("about4"))
about3=trim(rs("about3"))
image1=trim(rs("image1"))
image2=trim(rs("image2"))
%>
<TR bgcolor="#FFFFFF">
<TD align="center" ><%=about1%></TD>
<TD align="center" ><%=about4%></TD>
<TD align="center" ><%=about3%></TD>
<TD height="28" align="center" ><a href="hyfw_01_01.asp?aboutid=<%=about_id%>" >修改</a>/
<a href="../my_RL/news.asp?aboutid=<%=about_id%>" target="_blank" >查看</a>
<!--/<a href="hyfw_01_0.asp?aboutid=<%=about_id%>">删除</a> -->
</TD>
</TR>
<%
rs.movenext
loop
end if
%>
</TABLE>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -