NewsShow.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="NewsShow.aspx.cs" Inherits="ShowNews" %>
- <!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>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" bordercolordark="#FFFFFF" bordercolorlight="#CCCCCC">
- <caption>新闻发布系统</caption>
- <tr>
- <td background="Images/mmto.gif" height="15" width="100%" style="text-align: right">
- <img src="Images/printer.gif" width="16" height="16"><a href="javascript:window.print()">打印本页</a>
- </td>
- </tr>
- <tr>
- <td width="100%" style="text-align:center;height:30px" background="Images/Title.gif"><h3><%=dr["biaoti"]%></h3></td>
- </tr>
- <tr align="center">
- <td>
- <font color="#999999">发布时间:[<%=dr["shijian"]%>]</font>
- </td>
- </tr>
- <tr>
- <td style="text-align: left">
- <%
- if (dr["img"] != String.Empty)
- {
- Response.Write("<img src='" + dr["img"] + "' border=0 align='left'>");
- }
- %>
- <br>
- <br>
- <%=dr["neirong"]%>
- </td>
- </tr>
- <tr>
- <td>
- <br>
- <br>
- 摘自:<%=dr["zhaizi"]%>
- <br>
- </td>
- </tr>
- </table>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" background="Images/mmto.gif">
- <tr>
- <td width="40%">
- 本条消息被浏览了 <font color="#FF3333">[<%=dr["Counter"]%>]</font>次
- </td>
- <td width="60%" style="text-align: right">
- 管理员可以<a href="EditNews.aspx?NewsID=<%=dr["NewsID"]%>">编辑该新闻</a> <a href="javascript:window.close()">关闭本窗口</a>
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>