⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 background_foregroundcontentview.aspx

📁 一个真正的CMS系统,可以完全实现建站自动化,用.NET开发.
💻 ASPX
字号:
<%@ Page Language="C#" Inherits="SiteServer.BackgroundPages.BackgroundForegroundContentView" EnableViewState="false" %>
<html>
<head>
<!--#include file="../inc/html_head.inc"-->
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>

<form id="myForm" runat="server">

  <br>
  <table width="95%" align="center" cellspacing="0" cellpadding="0">
<tr>
<td class="mframe-t-left"></td>
<td class="mframe-t-mid">
	<span class="mframe-t-text">内容信息</span>
</td>
<td class="mframe-t-right"></td>
</tr>
</table>
<table width="95%" align="center" cellspacing="0" cellpadding="0">
<tr>
<td class="mframe-m-left"></td>
<td class="mframe-m-mid">
	<asp:Label width="100%" id="myLabel" style="text-align:center" runat="server"/> 
	<table width="95%" height="20" align="center">
	  <tr>
        <td width="118" height="25"><strong>添加者:</strong> </td>
        <td width="447"><%=collection["AddUserName"]%>
        </td>
      </tr>
	  <tr>
        <td width="118" height="25"><strong>添加时间:</strong> </td>
        <td><%=collection["AddDate"]%>
        </td>
      </tr>
	  <tr>
        <td width="118" height="25"><strong>是否通过审核:</strong> </td>
        <td><%=collection["IsChecked"]%>
        </td>
      </tr>
<%
if (IsShowWriteBack)
{
%>
	  <tr>
        <td width="118" height="25"><strong>是否回复:</strong> </td>
        <td><%=collection["IsWriteBack"]%>
        </td>
      </tr>
<%
	if (collection["IsWriteBack"] == "True")
	{
%>
	  <tr>
        <td width="118" height="25"><strong>回复人:</strong> </td>
        <td><%=collection["WriteBackUserName"] %>
        </td>
      </tr>
	  <tr>
        <td width="118" height="25"><strong>回复时间:</strong> </td>
        <td><%=collection["WriteBackDate"]%>
        </td>
      </tr>
<%
	}
}
if (collection != null && collection.Count > 0)
{
	foreach (string[] stringArr in StringArrayList)
	{
		string DisplayName = stringArr[0];
		string Value = collection[stringArr[1]];
%>
      <tr>
        <td width="118" height="25"><strong><%=DisplayName%>:</strong> </td>
        <td><%=Value%>
        </td>
      </tr>
	  <%
	  	}
	}
	  %>
      <tr>
        <td colspan="2" height="30" align="center"><input type="button" onClick="javascript:window.close();"  value="关 闭">
        </td>
      </tr>
    </table></td>
<td class="mframe-m-right"></td>
</tr>
</table>
<table width="95%" align="center" cellspacing="0" cellpadding="0" >
<tr>
<td class="mframe-b-left"></td>
<td class="mframe-b-mid">&nbsp;</td>
<td class="mframe-b-right"></td>
</tr>
</table>


</form>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -