announce_detail.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:3k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="announce_detail.aspx.cs" Inherits="web_announcement_announce_detail" %>
  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.     <link href="../../css/style.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9.     <form id="form1" runat="server">
  10.     <div>
  11.     <center><br />
  12.         <asp:Table ID="TblAnnouncement" BorderWidth="1px" runat="server" Width="600px">
  13.             <asp:TableHeaderRow>
  14.                 <asp:TableHeaderCell HorizontalAlign="Left" BackColor="lightgray" ColumnSpan="2">
  15.                     <asp:Label ID="LblSubject" runat="server" BorderStyle="None"></asp:Label>
  16.                 </asp:TableHeaderCell>
  17.             </asp:TableHeaderRow>
  18.             <asp:TableRow>
  19.                 <asp:TableCell BorderWidth="1px">類別</asp:TableCell>
  20.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  21.                     <asp:Label ID="LblType" runat="server" BorderStyle="None"></asp:Label>
  22.                 </asp:TableCell>
  23.             </asp:TableRow>
  24.             <asp:TableRow>
  25.                 <asp:TableCell BorderWidth="1px">發佈人</asp:TableCell>
  26.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  27.                     <asp:Label ID="LblCreUser" runat="server" BorderStyle="None"></asp:Label>
  28.                 </asp:TableCell>
  29.             </asp:TableRow>
  30.             <asp:TableRow>
  31.                 <asp:TableCell BorderWidth="1px">發佈時間</asp:TableCell>
  32.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  33.                     <asp:Label ID="LblCreDate" runat="server" BorderStyle="None"></asp:Label>
  34.                 </asp:TableCell>
  35.             </asp:TableRow>
  36.             <asp:TableRow>
  37.                 <asp:TableCell BorderWidth="1px">有效日期</asp:TableCell>
  38.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  39.                     <asp:Label ID="LblValidateDate" runat="server" BorderStyle="None"></asp:Label>
  40.                 </asp:TableCell>
  41.             </asp:TableRow>
  42.             <asp:TableRow>
  43.                 <asp:TableCell BorderWidth="1px">內容</asp:TableCell>
  44.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  45.                     <asp:Label ID="LblContent" runat="server" BorderStyle="None"></asp:Label>
  46.                 </asp:TableCell>
  47.             </asp:TableRow>
  48.             <asp:TableRow Visible="false">
  49.                 <asp:TableCell BorderWidth="1px">
  50.                     <asp:Label ID="LblAttachment" runat="server" Text="附件" BorderStyle="None"></asp:Label>
  51.                 </asp:TableCell>
  52.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
  53.                     <asp:LinkButton ID="LbAttachment" runat="server" OnClick="LbAttachment_Click"></asp:LinkButton>
  54.                 </asp:TableCell>
  55.             </asp:TableRow>
  56.         </asp:Table>
  57.         <br />
  58.         <input type="button" value="返回" onclick="history.go(-1)" />
  59.         <asp:HiddenField ID="ContentLength" Value="0" runat="server" />
  60.         <asp:HiddenField ID="AttachmentSaveName" runat="server" />
  61.     </center>
  62.     </div>
  63.     </form>
  64. </body>
  65. </html>