新闻列表管理页面
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="NewsManage.aspx.cs" Inherits=".UI.images.News.NewsManage" %>
<%@ Register Src="../Controls/Pages.ascx" TagName="Pages" TagPrefix="uc1" %>
<!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 id="Head1" runat="server">
<link href="../images/style/style.css" type="text/css" rel="stylesheet">
<title>新闻管理</title>
<script type="text/javascript" charset="gb2312" src="/Office\style\1\js\Ajax.js"></script>
<script type="text/javascript">
function checkAll(obj,name)
{
var values="";
var tempCheck= obj.checked
var eles = document.getElementsByName(name);
for(var i=0;i<eles.length;i++)
{
if(eles[i].type=='checkbox')
{
eles[i].checked=tempCheck;
}
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="760">
<tr>
<td align="center" bgcolor="#eef7ff" colspan="2" style="height: 20px">
<strong>新闻管理</strong></td>
</tr>
<tr bgcolor="#ffffff">
<td align="right" bgcolor="#d2eaff" style="width: 57px; height: 30px">
</td>
<td bgcolor="#eef7ff" style="height: 30px">
<asp:DropDownList ID="DdlType" runat="server" Width="103px">
</asp:DropDownList>
<asp:TextBox ID="TbKeyword" runat="server"></asp:TextBox>
<asp:Button ID="BtSearch" runat="server" OnClick="BtSearch_Click" Text="查询" Width="74px" /></td>
</tr>
<tr bgcolor="#ffffff">
<td align="right" bgcolor="#d2eaff" style="width: 57px; height:30px">
</td>
<td bgcolor="#eef7ff" style="height: 30px">
<a href="<%=Request.Path.ToString()%>?isCommand=1">推荐新闻</a> <a href="<%=Request.Path.ToString()%>?isTop=1">置顶新闻</a> <a href="<%=Request.Path.ToString()%>">全部新闻</a>
<input id="Button1" type="button" onclick="document.location='NewsEdit.aspx'" value="添加新新闻" />
</td>
</tr>
<tr bgcolor="#ffffff" style="background-color: #eef7ff">
<td bgcolor="#eef7ff" style="color: #ff6600; height: 30px" colspan="2">
<asp:GridView ID="gvList" runat="server" AutoGenerateColumns="False"
BorderColor="#337FB2" BorderWidth="2px" Font-Size="Small" ForeColor="#333333"
Height="32%" OnRowDataBound="gvList_RowDataBound" Width="100%">
<FooterStyle BackColor="#A6A1E0" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField HeaderText="编号" />
<asp:BoundField DataField="TypeName" HeaderText="类型名称" />
<asp:BoundField DataField="Title" HeaderText="标题" />
<asp:BoundField DataField="AddTime" DataFormatString="{0:yyyy-MM-dd HH:mm:ss}" HeaderText="时间" />
<asp:BoundField HeaderText="管理" />
</Columns>
<RowStyle BackColor="White" Font-Bold="True" Font-Size="Small" ForeColor="#003399"
HorizontalAlign="Center" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
<PagerStyle BackColor="#337FB2" ForeColor="White" HorizontalAlign="Center" VerticalAlign="Middle" />
<HeaderStyle BackColor="#337FB2" Font-Size="12px" ForeColor="White" HorizontalAlign="Center"
VerticalAlign="Middle" />
<AlternatingRowStyle BackColor="#E8F4FF" Font-Bold="True" Font-Size="Small" HorizontalAlign="Center" />
</asp:GridView>
</td>
</tr>
<tr bgcolor="#ffffff" style="background-color: #eef7ff">
<td bgcolor="#eef7ff" colspan="2" style="color: #ff6600; height: 30px">
<uc1:Pages ID="Pages1" runat="server" />
</td>
</tr>
<tr bgcolor="#ffffff" style="background-color: #eef7ff">
<td align="left" bgcolor="#d2eaff" style="width: 57px; height: 30px">
<asp:CheckBox ID="CbCheckAll" onclick="checkAll(this,'action')" runat="server" Text="全选" Width="66px" />
<asp:Button ID="BtShanChu" runat="server" OnClick="BtShanChu_Click" Text="删除" /></td>
<td bgcolor="#eef7ff" style="color: #ff6600; height: 30px">
<span class="font"><font color="#666666"><font color="#999999"><font color="#ff6600">
</font></font></font></span></td>
</tr>
</table>
</div>
</form>
</body>
</html>
posted on 2009-06-10 18:18
sanmao 阅读(60)
评论(0) 编辑 收藏