?? left.jsp
字號:
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<%@ page import="cn.com.blogonline.*"%>
<%@ page import="java.util.*"%>
<%
Blog blog = (Blog)session.getAttribute(Constants.VISIT_BLOG_KEY);
List sortList = (List)session.getAttribute(Constants.SORT_LIST_KEY);
Sort sort = null;
List linkList = (List)session.getAttribute(Constants.LINK_LIST_KEY);
Links link = null;
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>主菜單</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="StyleSheet" type="text/css" href="images/mystyle.css">
<base target="main">
</head>
<body>
<table cellspacing="0" cellpadding="0" width="750" background="images/bk_11.jpg" border="0">
</table>
<table border="1" width="750" bordercolor="#FCD447" height="450">
<tr>
<td width="137" valign="top" height="156">
<table border="1" width="100%" bordercolor="#FF9900">
<tr>
<td width="100%">
<img border="0" src="images/<%=blog.getImage()%>" width="180" height="121" alt="">
</td>
</tr>
<tr>
<td width="100%">
<p align="center">
<b><font color="#FF0000"><%=blog.getSubject()%>的Blog</font></b>
</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="137" valign="top" height="73">
<table border="1" width="141%" bordercolor="#FF9900" height="69">
<tr>
<td width="100%" height="17">
<b><font color="#FF0000">導(dǎo)航欄</font></b>
</td>
</tr>
<tr>
<td width="100%" height="17">
<p align="center">
<a href="blogOperate?sortid=0&pageid=0" target="main">個人首頁</a>
</p>
</td>
</tr>
<tr>
<td width="50%" height="17">
<p align="center">
<a href="blogAdminMain.jsp" target="_parent">個人管理</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="137" valign="top" height="67">
<table border="1" width="140%" bordercolor="#FF9900">
<tr>
<td width="100%">
<b><font color="#FF0000">文章分類</font></b>
</td>
</tr>
<tr>
<td width="100%">
<p align="center">
<a href="blogOperate?sortid=0&pageid=0" target="main">所有文章</a>
</p>
</td>
</tr>
<%if(sortList != null ){
for(int i = 0;i < sortList.size();i++)
{
sort = (Sort)sortList.get(i);
%>
<tr>
<td width="100%">
<p align="center">
<a href="blogOperate?sortid=<%=sort.getId()%>&pageid=0" target="main"><%=sort.getName()%></a>
</p>
</td>
</tr>
<%
}
} %>
</table>
</td>
</tr>
<tr>
<td width="137" valign="top" height="73">
<table border="1" width="140%" bordercolor="#FF9900">
<tr>
<td width="100%">
<b><font color="#FF0000">我的鏈接</font></b>
</td>
</tr>
<%if(linkList != null ){
for(int i = 0;i < linkList.size();i++)
{
link = (Links)linkList.get(i);
%>
<tr>
<td width="100%">
<p align="center">
<a href="<%=link.getUrl()%>" target="_blank"><%=link.getName()%></a>
</p>
</td>
</tr>
<%
}
} %>
</table>
</td>
</tr>
<tr>
<td width="137" valign="top" align="center" height="17">
<font color="#FF9900">網(wǎng)頁計(jì)數(shù)器:<%=blog.getVisitcount()%></font>
</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -