announce_detail.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:3k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="announce_detail.aspx.cs" Inherits="web_announcement_announce_detail" %>
- <!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>
- <link href="../../css/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <center><br />
- <asp:Table ID="TblAnnouncement" BorderWidth="1px" runat="server" Width="600px">
- <asp:TableHeaderRow>
- <asp:TableHeaderCell HorizontalAlign="Left" BackColor="lightgray" ColumnSpan="2">
- <asp:Label ID="LblSubject" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableHeaderCell>
- </asp:TableHeaderRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">類別</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Label ID="LblType" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">發佈人</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Label ID="LblCreUser" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">發佈時間</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Label ID="LblCreDate" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">有效日期</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Label ID="LblValidateDate" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">內容</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Label ID="LblContent" runat="server" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow Visible="false">
- <asp:TableCell BorderWidth="1px">
- <asp:Label ID="LblAttachment" runat="server" Text="附件" BorderStyle="None"></asp:Label>
- </asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:LinkButton ID="LbAttachment" runat="server" OnClick="LbAttachment_Click"></asp:LinkButton>
- </asp:TableCell>
- </asp:TableRow>
- </asp:Table>
- <br />
- <input type="button" value="返回" onclick="history.go(-1)" />
- <asp:HiddenField ID="ContentLength" Value="0" runat="server" />
- <asp:HiddenField ID="AttachmentSaveName" runat="server" />
- </center>
- </div>
- </form>
- </body>
- </html>