newsManager.aspx
上传用户:xy99169
上传日期:2022-08-03
资源大小:139k
文件大小:2k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="newsManager.aspx.cs" Inherits="newsManager" %>
- <!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 runat="server">
- <title>无标题页</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:Panel ID="Panel2" runat="server" GroupingText="新闻标题" Height="137px" Width="408px">
- <asp:ListBox ID="listNews" runat="server" Height="126px" Width="488px" AutoPostBack="True" DataTextField="newsTitle" DataValueField="newsID" OnSelectedIndexChanged="listNews_SelectedIndexChanged">
- <asp:ListItem></asp:ListItem>
- </asp:ListBox><br />
- </asp:Panel>
- <asp:Button ID="Button1" runat="server" Text="删除新闻" OnClick="Button1_Click" /><br />
- <br />
- <br />
- <asp:Panel ID="Panel3" runat="server" GroupingText="新闻详情" Height="196px" Width="492px">
- <asp:Label ID="Label1" runat="server" Height="173px" Width="483px"></asp:Label></asp:Panel>
- <br />
-
- <asp:Panel ID="Panel4" runat="server" Height="50px" Width="125px">
- <asp:Panel ID="Panel1" runat="server" Height="225px" Width="489px" GroupingText="添加新闻">
- 新闻标题:<br />
- <asp:TextBox ID="TextBox1" runat="server" Width="461px"></asp:TextBox><br />
- 新闻内容:<br />
- <asp:TextBox ID="TextBox2" runat="server" Height="136px" TextMode="MultiLine" Width="461px"></asp:TextBox><br />
- <asp:Button ID="Button2" runat="server" Text="提交" OnClick="Button2_Click" /></asp:Panel>
- </asp:Panel>
- </div>
- </form>
- </body>
- </html>