Reader.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:5k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Reader.aspx.cs" Inherits="Reader" %>
  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>第11章:网络邮件管理系统===查看邮件</title>
  6.     <link rel="Stylesheet" href="ASPNET2.0BaseCss.css" type="text/css" />
  7. </head>
  8. <body style="margin-left:0;margin-top:0;margin-left:0">
  9.     <form id="form1" runat="server" method="post">
  10.     <table class="GbText" style="BORDER-COLLAPSE: collapse; border-right: #ccccff thin solid; border-top: #ccccff thin solid; border-left: #ccccff thin solid; border-bottom: #ccccff thin solid;" borderColor="#93bee2" cellspacing="0"
  11. cellpadding="2" width="100%" border="1">
  12. <tr>
  13. <td colspan="2"><font class="HeaderText">查看邮件:</font></td>
  14. </tr>
  15. <tr>
  16. <td colspan="2"><hr style="font-size: 1pt;" /></td>
  17. </tr>
  18. <tr style="line-height:2;">
  19. <td style="width:155px" align="right">收件人:</td>
  20. <td><asp:textbox id="To" runat="server" Width="300px" CssClass="InputCss"></asp:textbox> </td>
  21. </tr>
  22. <tr style="line-height:2;">
  23. <td style="width:155px" align="right">抄送:</td>
  24. <td><asp:textbox id="CC" runat="server" Width="300px" CssClass="InputCss"></asp:textbox> </td>
  25. </tr>
  26. <tr style="line-height:2;">
  27. <td style="width:155px" align="right">主题:</td>
  28. <td><asp:textbox id="Title" runat="server" Width="300px" CssClass="InputCss"></asp:textbox> </td>
  29. </tr>
  30. <tr style="line-height:2;">
  31. <td style="width:155px" align="right">邮件格式:</td>
  32. <td><input id="HtmlCB" type="checkbox" runat="server" class="GbText" disabled="disabled" />HTML格式</td>
  33. </tr>
  34. <tr style="line-height:2;">
  35. <td style="width:155px" align="right" valign="top">内容:</td>
  36. <td><asp:textbox id="Body" runat="server" Width="400px" CssClass="InputCss" Height="200px" TextMode="MultiLine"></asp:textbox> </td>
  37. </tr>
  38. <tr style="line-height:2;">
  39. <td style="width:155px" align="right" valign="top">邮件附件:</td>
  40. <td><asp:GridView ID="AttachView" runat="server" AutoGenerateColumns="False" CssClass="GbText"
  41. Width="100%" DataKeyNames="AttachmentID" HorizontalAlign="Left">
  42. <FooterStyle ForeColor="White" BackColor="#3B6BD1" Font-Bold="True"></FooterStyle>
  43. <SelectedRowStyle Font-Bold="True" ForeColor="Navy" BackColor="#FFCC66" BorderColor="CornflowerBlue" />
  44. <RowStyle ForeColor="#333333" BackColor="#FFFBD6" BorderColor="CornflowerBlue" BorderStyle="Solid" BorderWidth="1px" />
  45. <HeaderStyle Font-Bold="True" ForeColor="#FFFFCC" CssClass="GbText" BackColor="#3B6BD1"></HeaderStyle>
  46. <Columns>
  47. <asp:TemplateField HeaderText="文件名称">
  48. <ItemTemplate>
  49. <a href='<%#DataBinder.Eval(Container.DataItem,"Url") %>' target="_blank"><%#DataBinder.Eval(Container.DataItem,"Name") %></a>
  50. </ItemTemplate>
  51. <ItemStyle HorizontalAlign="Left" />
  52. <HeaderStyle Width="70%" />
  53. </asp:TemplateField>
  54. <asp:TemplateField  HeaderText="文件类型">
  55. <ItemTemplate>
  56. <%# DataBinder.Eval(Container.DataItem,"Type") %>
  57. </ItemTemplate>
  58. <ItemStyle HorizontalAlign="Center" />
  59. <HeaderStyle Width="15%" HorizontalAlign="Center" />
  60. </asp:TemplateField>
  61. <asp:TemplateField  HeaderText="文件大小">
  62. <ItemTemplate>
  63. <%# (int)DataBinder.Eval(Container.DataItem,"Contain")/1024 %>KB
  64. </ItemTemplate>
  65. <ItemStyle HorizontalAlign="Center" />
  66. <HeaderStyle Width="15%" HorizontalAlign="Center" />
  67. </asp:TemplateField>
  68. </Columns>
  69. <AlternatingRowStyle BorderColor="CornflowerBlue" BackColor="White" BorderStyle="Solid" BorderWidth="1px" />
  70. <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
  71. <EditRowStyle BorderColor="CornflowerBlue" BorderWidth="1px" />
  72. </asp:GridView>
  73. </td>
  74. </tr>
  75. <tr style="line-height:2;">
  76. <td style="width:155px; height: 29px;" align="right"></td>
  77. <td align="left" style="height: 29px"><font face="宋体">&nbsp;</font></td>
  78. </tr>
  79. <tr style="line-height:2;">
  80. <td style="width:155px; height: 29px;" align="right"></td>
  81. <td align="left" style="height: 29px"><font face="宋体">&nbsp;</font><asp:Button ID="RecieverBtn" runat="server" Text="回复" Width="100px" CssClass="ButtonCss" OnClick="RecieverBtn_Click" /><font face="宋体">&nbsp;</font><asp:Button ID="ReturnBtn" runat="server" Text="返回" Width="100px" CssClass="ButtonCss" OnClick="ReturnBtn_Click" CausesValidation="False" /></td>
  82. </tr>
  83. <tr>
  84. <td style="width: 155px"></td>
  85. </tr>
  86.     </table>
  87.     </form>  
  88. </body>
  89. </html>