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

📄 articleviewshow.jsp

📁 数学网
💻 JSP
字号:
<%@ page language="java" pageEncoding="GB2312"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>

<html:html locale="true">
<head>
 
<link href="../images/myweb.css" rel="stylesheet" type="text/css">
<title>管理界面</title>
<style type="text/css">
<!--
body {
	background-image: url(../images/main_bg.gif);
}
-->
</style>
</head>

<body>

<table width="99%" cellpadding="0"  cellspacing="0" border="0" align="center">
	<tr>
    		<td>
			<table width="82" height="28" border="0" cellpadding="0"  cellspacing="0" background="../images/main_menu_bg.gif">
      				<tr>
        				<td valign="bottom"><div align="center">文章详细信息</div></td>
      				</tr>
    			</table>
		</td>
  	</tr>
</table>	
<br>
<table width="99%"  cellpadding="3"  cellspacing="1" border="0" align="center" class="main_table">
	<tr>
    		<td colspan="3" align="center" class="main_topbg" >网站后台管理</td>
  	</tr>

  	<bean:define id="article" name="Article" type="math.article.model.Article"/>
  	<tr >
  		<td width="160" class="myweb_td" >
  			文章标题:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="articletitle"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			发布人ID:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write   name="article" property="userid"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			文章类别:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write name="article"   property="articletype1"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			文章类型:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    			<bean:write  name="article"  property="articletype2"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			发布时间:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="issuetime"/>
  		</td>
  		<td class="myweb_td"  width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			是否新文章:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="isnew"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			是否至顶:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="istop"/>
    		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			文章点击数:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="articlecount"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			发布人IP:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="userip"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
  	<tr>
  		<td class="myweb_td" >
  			文章内容:
  		</td>
    		<td class="myweb_td" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#ffffff'">
    		<bean:write  name="article" property="articlecontent"/>
  		</td>
  		<td class="myweb_td" width="260px">
  			&nbsp;
  		</td>
  	</tr>
</table>
&nbsp;<a href="javascript:window.close();"><FONT color="green" size="3">关闭本窗口</FONT></a> 
</body>
</html:html>

⌨️ 快捷键说明

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