newsmanage.asp

来自「网店批发系统,很好很强大,很好很强大很好很强大」· ASP 代码 · 共 48 行

ASP
48
字号
<!--#include file="conn.asp"-->
<!--#include file="checkAdmin.asp"-->
<!--#include file="../inc/check_inc.asp"-->
<!--#include file="../inc/page_inc.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="css/css.css" rel="stylesheet" type="text/css" />
<title>商城公告管理</title>
</head>

<body>
<!--#include file="inc/newsManage_inc.asp"-->
<table width="97%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="24" align="center" class="listtop">新闻序号</td>
	<td align="center" class="listtop">新闻名称</td>
	<td align="center" class="listtop">添加时间</td>
	<td align="center" class="listtop">操作</td>
  </tr>  
<%	
	if i <> -1 then
		i = i + 1
		if Cint(Page*PageNum-1)<Cint(i-1) then
			PageEnd = Page*PageNum-1
		else
			PageEnd = i-1
		end if
		
		for j = (Page-1)*PageNum to PageEnd
%>
  <tr onMouseOver="this.style.backgroundColor='#FBF9F4';" onMouseOut="this.style.backgroundColor='#FFFFFF'">
    <td height="24" align="center" class="listitem"><%=news(0,j)%></td>
	<td align="center" class="listitem"><a href="newsEdit.asp?ID=<%=news(0,j)%>"><%=news(1,j)%></a></td>
	<td align="center" class="listitem"><%=news(2,j)%></td>
	<td align="center" class="listitem"><a href="newsEdit.asp?ID=<%=news(0,j)%>">编辑</a> <a href="newsSave.asp?Action=del&ID=<%=news(0,j)%>" onClick="return confirm('您确认要删除该新闻吗?');">删除</a></td>
  </tr>	
<%
		next
	end if
%>
</table>
<%call PageTable()%>
<!--#include file="inc/closeconn_inc.asp"-->
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?