NewsShow.aspx
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="NewsShow.aspx.cs" Inherits="ShowNews" %>
  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.           <table width="100%" border="0" cellspacing="0" cellpadding="0" bordercolordark="#FFFFFF" bordercolorlight="#CCCCCC">
  11.         <caption>新闻发布系统</caption>
  12.         <tr>
  13.           <td background="Images/mmto.gif" height="15" width="100%" style="text-align: right">
  14.             <img src="Images/printer.gif" width="16" height="16"><a href="javascript:window.print()">打印本页</a>
  15.           </td>
  16.         </tr>
  17.         <tr>
  18.           <td width="100%" style="text-align:center;height:30px" background="Images/Title.gif"><h3><%=dr["biaoti"]%></h3></td>
  19.         </tr>
  20.         <tr align="center">
  21.           <td>
  22.             <font color="#999999">发布时间:[<%=dr["shijian"]%>]</font>
  23.           </td>
  24.         </tr>
  25.         <tr>
  26.           <td style="text-align: left">
  27.             <%
  28.               if (dr["img"] != String.Empty)
  29.               {
  30.                 Response.Write("<img src='" + dr["img"] + "' border=0 align='left'>");
  31.               }
  32.             %>
  33.             <br>
  34.             <br>
  35.             <%=dr["neirong"]%>
  36.           </td>
  37.         </tr>
  38.         <tr>
  39.           <td>
  40.             <br>
  41.             <br>
  42.             摘自:<%=dr["zhaizi"]%>
  43.             <br>
  44.           </td>
  45.         </tr>
  46.       </table>
  47.       <table width="100%" border="0" cellspacing="0" cellpadding="0" background="Images/mmto.gif">
  48.         <tr>
  49.           <td width="40%">
  50.             本条消息被浏览了 <font color="#FF3333">[<%=dr["Counter"]%>]</font>次
  51.           </td>
  52.           <td width="60%" style="text-align: right">
  53.             管理员可以<a href="EditNews.aspx?NewsID=<%=dr["NewsID"]%>">编辑该新闻</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:window.close()">关闭本窗口</a>
  54.           </td>
  55.         </tr>
  56.       </table>
  57.     </div>
  58.     </form>
  59. </body>
  60. </html>