zoukankan      html  css  js  c++  java
  • 新闻列表管理页面

    新闻列表管理页面

    <%@ 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=" 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=" 57px; height:30px">
                          </td>
                    <td bgcolor="#eef7ff" style="height: 30px">
                        &nbsp;<a href="<%=Request.Path.ToString()%>?isCommand=1">推荐新闻</a>  <a href="<%=Request.Path.ToString()%>?isTop=1">置顶新闻</a> <a href="<%=Request.Path.ToString()%>">全部新闻</a> &nbsp; &nbsp;
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                        <input id="Button1" type="button" onclick="document.location='NewsEdit.aspx'" value="添加新新闻" />
                        &nbsp;&nbsp; &nbsp;
                    </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=" 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">
                            &nbsp; </font></font></font></span></td>
                </tr>
            </table>
       
        </div>
        </form>
    </body>
    </html>

  • 相关阅读:
    使用C#实现DHT磁力搜索的BT种子后端管理程序+数据库设计(开源)
    便携版WinSCP在命令行下同步文件夹
    ffmpeg (ffprobe)分析文件关键帧时间点
    sqlite删除数据或者表后,回收数据库文件大小
    ubuntu 20.04下 freeswitch 配合 fail2ban 防恶意访问
    ffmpeg使用nvenc编码的结论记录
    PC版跑跑卡丁车 故事模式 亚瑟传说章节 卡美洛庆典 2阶段 心灵之眼 攻略
    There was an error loading or playing the video
    Nvidia RTX Voice 启动报错修复方法
    火狐浏览器 关闭跨域限制
  • 原文地址:https://www.cnblogs.com/bestsaler/p/1835600.html
Copyright © 2011-2022 走看看