newsManager.aspx
上传用户:xy99169
上传日期:2022-08-03
资源大小:139k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="newsManager.aspx.cs" Inherits="newsManager" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.         &nbsp;<asp:Panel ID="Panel2" runat="server" GroupingText="新闻标题" Height="137px" Width="408px">
  11.         <asp:ListBox ID="listNews" runat="server" Height="126px" Width="488px" AutoPostBack="True" DataTextField="newsTitle" DataValueField="newsID" OnSelectedIndexChanged="listNews_SelectedIndexChanged">
  12.             <asp:ListItem></asp:ListItem>
  13.         </asp:ListBox><br />
  14.         </asp:Panel>
  15.         <asp:Button ID="Button1" runat="server" Text="删除新闻" OnClick="Button1_Click" /><br />
  16.         <br />
  17.         <br />
  18.         <asp:Panel ID="Panel3" runat="server" GroupingText="新闻详情" Height="196px" Width="492px">
  19.         <asp:Label ID="Label1" runat="server" Height="173px" Width="483px"></asp:Label></asp:Panel>
  20.         <br />
  21.         &nbsp;
  22.         <asp:Panel ID="Panel4" runat="server" Height="50px" Width="125px">
  23.         <asp:Panel ID="Panel1" runat="server" Height="225px" Width="489px" GroupingText="添加新闻">
  24.             新闻标题:<br />
  25.             <asp:TextBox ID="TextBox1" runat="server" Width="461px"></asp:TextBox><br />
  26.             新闻内容:<br />
  27.             <asp:TextBox ID="TextBox2" runat="server" Height="136px" TextMode="MultiLine" Width="461px"></asp:TextBox><br />
  28.             <asp:Button ID="Button2" runat="server" Text="提交" OnClick="Button2_Click" /></asp:Panel>
  29.         </asp:Panel>
  30.     
  31.     </div>
  32.     </form>
  33. </body>
  34. </html>