20181306宁锦鹏代码连接
chaxunPre.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ page isELIgnored="false" %> <%@page import="java.text.SimpleDateFormat"%> <% String path = request.getContextPath(); %> <!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> <meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" /> <meta http-equiv="description" content="This is my page" /> <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" /> <script type="text/javascript" src="<%=path %>/js/popup.js"></script> <script language="javascript"> function c() { document.formAdd.submit(); } function up() { var pop=new Popup({ contentType:1,isReloadOnClose:false,width:400,height:200}); pop.setContent("contentUrl","<%=path %>/upload/upload.jsp"); pop.setContent("title","文件上传"); pop.build(); pop.show(); } </script> </head> <body leftmargin="2" topmargin="9" background='<%=path %>/img/allbg.gif'> <form action="<%=path %>/gaojian?type=chaxunRes" name="formAdd" method="post"> <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px"> <tr bgcolor="#EEF4EA"> <td colspan="3" background="<%=path %>/img/wbg.gif" class='title'><span> </span></td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> 公文申请标题: </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="text" name="title" size="90"/> </td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="button" value="查询" onclick="c()"/> <input type="reset" value="重置"/> </td> </tr> </table> </form> </body> </html>
gaojianAdd.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ page isELIgnored="false" %> <%@page import="java.text.SimpleDateFormat"%> <% String path = request.getContextPath(); %> <!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> <meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" /> <meta http-equiv="description" content="This is my page" /> <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" /> <script type="text/javascript" src="<%=path %>/js/popup.js"></script> <script language="javascript"> function c() { if(document.formAdd.title.value=="") { alert("请输入标题"); return false; } if(document.formAdd.fujian.value=="") { alert("请上传附件"); return false; } document.formAdd.submit(); } function up() { var pop=new Popup({ contentType:1,isReloadOnClose:false,width:400,height:200}); pop.setContent("contentUrl","<%=path %>/upload/upload.jsp"); pop.setContent("title","文件上传"); pop.build(); pop.show(); } </script> </head> <body leftmargin="2" topmargin="9" background='<%=path %>/img/allbg.gif'> <form action="<%=path %>/gaojian?type=gaojianAdd" name="formAdd" method="post"> <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px"> <tr bgcolor="#EEF4EA"> <td colspan="3" background="<%=path %>/img/wbg.gif" class='title'><span> </span></td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> 公文申请标题: </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="text" name="title" size="90"/> </td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> 上传附件: </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="text" name="fujian" id="fujian" size="90" readonly="readonly"/> <input type="button" value="上传" onclick="up()"/> <input type="hidden" name="fujianYuanshiming" id="fujianYuanshiming"/> </td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> 上传时间: </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="text" name="shijian" size="90" readonly="readonly" value="<%=new SimpleDateFormat("yyyy-MM-dd HH:mm").format(new Date())%>"/> </td> </tr> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td width="10%" bgcolor="#FFFFFF" align="right"> </td> <td width="75%" bgcolor="#FFFFFF" align="left"> <input type="button" value="提交" onclick="c()"/> <input type="reset" value="重置"/> </td> </tr> </table> </form> </body> </html>
gaojianMine.jsp
<%@ page language="java" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> <%@ page isELIgnored="false" %> <% String path = request.getContextPath(); %> <!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> <meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" /> <meta http-equiv="description" content="This is my page" /> <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" /> <script language="javascript"> function gaojianDel(id) { if(confirm('您确定删除吗?')) { window.location.href="<%=path %>/gaojian?type=gaojianDel&id="+id; } } function gaojianAdd() { var url="<%=path %>/admin/gaojian/gaojianAdd.jsp"; window.location.href=url; } function down1(fujianPath,fujianYuashiMing) { var url="<%=path %>/updown/updown.jsp?fujianPath="+fujianPath+"&fujianYuashiMing="+fujianYuashiMing; url=encodeURI(url); url=encodeURI(url); window.open(url,"_self"); } </script> </head> <body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'> <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px"> <tr bgcolor="#E7E7E7"> <td height="14" colspan="63" background="<%=path %>/img/tbg.gif"> </td> </tr> <tr align="center" bgcolor="#FAFAF1" height="22"> <td width="4%">序号</td> <td width="30%">标题</td> <td width="10%">附件</td> <td width="10%">上传时间</td> <td width="10%">专家审核</td> <td width="10%">主编审核</td> <td width="10%">操作</td> </tr> <c:forEach items="${requestScope.gaojianList}" var="gaojian" varStatus="ss"> <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"> <td bgcolor="#FFFFFF" align="center"> ${ss.index+1} </td> <td bgcolor="#FFFFFF" align="center"> ${gaojian.title} </td> <td bgcolor="#FFFFFF" align="center"> <a href="#" style="color: red" onclick="down1('${gaojian.fujian}','${gaojian.fujianYuanshiming}')">附件下载</a> </td> <td bgcolor="#FFFFFF" align="center"> ${gaojian.shijian} </td> <td bgcolor="#FFFFFF" align="center"> ${gaojian.zhuanjiashenhebiaozhi} </td> <td bgcolor="#FFFFFF" align="center"> ${gaojian.zhubianshenhebiaozhi} </td> <td bgcolor="#FFFFFF" align="center"> <input type="button" value="删除" onclick="gaojianDel(${gaojian.id})"/> </td> </tr> </c:forEach> </table> </body> </html>
base.css
* { font-size: 12px; font-family: "宋体"; } td { line-height: 1.5; } body { font-size: 12px; line-height: 1.5; font-family: "宋体"; } form,h1,h2,h3,ul,ol,div{ margin: 0; padding:0;} td,th,div { word-break:break-all; word-wrap:break-word; } b,strong { color:#666600; } li,dd { list-style-type:none; margin:0px; padding:0px; } input[type=button]{ background-color: #F1F8B4; } h1 { color:#171B16; font-size:130%; font-weight:bold; } h2 { color:#171B16; font-size:115%; font-weight:bold; } h3 { color:#171B16; font-size:100%; font-weight:bold;} a:link { font-size: 9pt; color: #000000; text-decoration: none; font-family: ""宋体""; } a:visited{ font-size: 9pt; color: #000000; text-decoration: none; font-family: ""宋体""; } a:hover {color: red; font-family: ""宋体"";} a img { border-style:none; } b a { color:#666600; } strong a { color:#666600; } a b{ color:#666600; } a strong{ color:#666600; } input { border: 1px solid #ababab; } .pubinputs { height: 22px; width:250px; padding:4px 3px 2px 3px; border-width:1px; border-style:solid; border-color:#999999 #dddddd #dddddd #999999; } .iptxt { height:22px; padding:4px 3px 2px 3px; border-width:1px; border-style:solid; border-color:#999999 #dddddd #dddddd #999999; } .alltxt { padding:4px 3px 2px 3px; border-width:1px; border-style:solid; border-color:#999999 #dddddd #dddddd #999999; } .pubinput { height: 24px; width:250px; padding-top:3px; padding-bottom:0px; } .pubinputl { height: 24px; width:350px; padding-top:3px; padding-bottom:0px; } .np { border:none; } .linerow{border-bottom: 1px solid #ACACAC;} .coolbg { border-right: 1px solid #ACACAC; border-bottom: 1px solid #ACACAC; background-color: #F1F8B4; padding:2px; padding-right:5px; padding-left:5px; background: url(allbtbg2.gif) #EFF7D0; cursor:pointer; } .coolbg2 { border: 1px solid #000000; background-color: #DFDDD2; height:18px } .ll { border-right: 2px solid #ACACAC; border-bottom: 2px solid #ACACAC; background-color: #E6E6E6 } .bline {border-bottom: 1px dotted #BCBCBC; height:28px; background-color: #FFFFFF;} #uploadfield{float:left;} .bline2 {border-bottom: 1px solid #BCBCBC;} .coolbt { border-left: 1px solid #EFEFEF; border-top: 1px solid #EFEFEF; border-right: 1px solid #ACACAC; border-bottom: 1px solid #ACACAC; background-color: #E4F7D7; cursor:pointer; } .coolbt2 { border-left: 1px solid #EFEFEF; border-top: 1px solid #EFEFEF; border-right: 1px solid #ACACAC; border-bottom: 1px solid #ACACAC; background-color: #F7FCDA } .coolbg3 { border: 1px solid #BDC5B4; background-color: #DFDDD2; height:20px; width:140px; text-align:right; } .coolbg61 { line-height:26px; width:380px; border-top:1px solid #BDC5B4; border-left:1px solid #BDC5B4; border-right:1px solid #BDC5B4; height:26px; text-align:right; background-color: #E7F3B1; } .coolbg62 { border: 1px solid #BDC5B4; background-color: #F8FDF0; height:300px; width:380px; padding:5px; } .coolbg4 { border-bottom: 1px solid #C9CFC1; background-color: #EDEBE5; height:20px; width:190px; text-align:right; } .coolbg5 { border-top: 1px solid #BDC5B4; background-color: #EDEBE5; font-size:1pt; height:6px; width:190px; } .dlg { border: 2px solid #749F4D; background-color: #F0FAEB; padding: 2px; width: 360px; line-height:160%; } .dlgws { border: 2px solid #749F4D; background-color: #F0FAEB; padding: 2px; width: 280px; line-height:160%; } .dlgws div { width: 100%; } .dlgTesttitle { border: 2px solid #749F4D; background-color: #F0FAEB; padding: 2px; width: 200px; line-height:150%; } #_mysource{ z-index:5000; } #_mywriter{ z-index:6000; } .option1{ background-color: #DCECA6; } .option2{ background-color: #F7FBD2; } .option3{ background-color: #FFFFFF; } .ininput{ width:96%; height:20px; border:1px solid #ffffff; } .nbt{ padding: 1px; background-image:url('allbtbg.gif'); background-color:#ffffff; border:1px solid #A5AF83; } .tdt{ padding-left: 6px; } .waitpage { top:0; left:0; filter:Alpha(opacity=70); -moz-opacity:0.7; position:absolute; z-index:10000; } .divpre { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale); } .autoinput { padding-left:3px; width:90%; height:22px } .bodytitle { margin:auto; height:28px; border:1px dotted #BFD67C; background:url('wbg.gif'); margin-bottom:6px; width:98%; font-weight:bold; } .bodytitle div { float:left } .bodytitletxt { padding-left:6px; line-height:28px; } .tbtitle td{ padding:3px; } .tblist td{ background:#FFFFFF; padding:6px; } .tblist td.tbsname{ background:#F9FFE6; padding:6px; }
default.css
*{font-size:12px; font-family:Tahoma,Verdana,微软雅黑,新宋体}
body{background:#D2E0F2; }
a{ color:Black; text-decoration:none;}
a:hover{ color:Red; text-decoration:underline;}
.textbox03 {border: #878787 1px solid;padding: 4px 3px;font:Verdana, Geneva, sans-serif,宋体;line-height: 14px; background-color: #fff; height: auto; font-size: 14px; font-weight: bold; width: 190px; }
.txt01{font:Verdana, Geneva, sans-serif,宋体;padding:3px 2px 2px 2px; border-width:1px; border-color:#ddd; color:#000;}
.txt {border: #878787 1px solid;padding: 4px 3px;font:Verdana, Geneva, sans-serif,宋体;line-height: 14px; background-color: #fff; height: auto; font-size: 14px;}
.footer{text-align:center;color:#15428B; margin:0px; padding:0px;line-height:23px; font-weight:bold;}
.head a{color:White;text-decoration:underline;}
.easyui-accordion ul{list-style-type:none;margin:0px; padding:10px;}
.easyui-accordion ul li{ padding:0px;}
.easyui-accordion ul li a{line-height:24px;}
.easyui-accordion ul li div{margin:2px 0px;padding-left:10px;padding-top:2px;}
.easyui-accordion ul li div.hover{border:1px dashed #99BBE8; background:#E0ECFF;cursor:pointer;}
.easyui-accordion ul li div.hover a{color:#416AA3;}
.easyui-accordion ul li div.selected{border:1px solid #99BBE8; background:#E0ECFF;cursor:default;}
.easyui-accordion ul li div.selected a{color:#416AA3; font-weight:bold;}
.icon{ background:url(../images/tabicons.png) no-repeat;width:18px; line-height:18px; display:inline-block;}
.icon-sys{ background-position:0px -200px;}
.icon-set{ background-position:-380px -200px;}
.icon-add{background-position: -20px 0px;}
.icon-add1{background:url('icon/edit_add.png') no-repeat;}
.icon-nav{background-position: -100px -20px; }
.icon-users{background-position: -100px -480px;}
.icon-userlist{background-position: -260px -480px;}
.icon-role{background-position: -360px -200px;}
.icon-set{background-position: -380px -200px;}
.icon-log{background-position: -380px -80px;}
.icon-delete16{background:url('icon/delete.gif') no-repeat;width:18px; line-height:18px; display:inline-block;}
.icon-delete{ background-position:-140px -120px;}
.icon-edit{ background-position:-380px -320px;}
.icon-magic{ background-position:0px -500px;}
.icon-database{ background-position:-20px -140px;}
.icon-money{ background-position:-40px -98px;}
.icon-tran{ background-position:-60px -140px;}
.icon-expand{ background:url('/images/coll2.gif') no-repeat;}
.icon-collapse{ background:url('/images/coll3.gif') no-repeat;}
mainlogin.css
@charset "utf-8"; /********************** * autor:Jikey * * time:2009-02- * * link:puag@qq.com * **********************/ body{ background:url(../images/loginbg.gif) repeat-x top #8bacd7;} #LoginCircle{ position:relative; width:853px; height:527px; margin:0 auto; text-align:center; top:0; z-index:1; background:url(../images/logincircle.gif) no-repeat;} #LoginDoc{ position:absolute; width:650px; height:242px; top:141px; margin:5px; left:99px; z-index:200; background:url(../images/logindocbg.gif) no-repeat center center #f9fbfe; } #SysName{ float:left; width:45%; font-family:'黑体'; font-size:24px; margin:60px 0 0 20px; color:#004ea2; line-height:24px;} #SysInput{ float:left; width:45%; height:120px; margin-top:60px;} #SysInput ul{ margin:0; padding:0; clear:both; list-style:none;} #SysInput ul li{ float:left; padding:0 5px; line-height:35px; text-align:right; width:50px;} .LefPos{text-align:left;margin:6px 0 0;} .EnteStyle{background:url(../images/login_logo.gif) no-repeat; width:115px; height:36px;} .InputStyle{border:#41a1be 1px solid;font-size:12px; background:url(../images/inputstyle.gif) repeat-x;color:#004ea2; font-family:"Verdana";HEIGHT:19px;line-height:18px;} #Copy{margin-left:auto; margin-right:auto;position:relative;text-align:center;top:-70px;color:#fff;z-index:300;} #select{margin:10px 20px 0 20px; font-size:24px;}
templatemo_style.css
/* CSS Credit: http://www.865171.cn */ body { margin: 0; padding: 0; line-height: 1.7em; font-family: Tahoma, Geneva, sans-serif; font-size: 12px; color: #646464; background: #fff url(/gxhq/images/templatemo_body_top.jpg) repeat-x; } a:link, a:visited { color: #1b9cd5; text-decoration: none; } a:active, a:hover { color: #000000; text-decoration: underline; } .button_01 a { display: block; width: 100px; height: 22px; padding: 2px 0 0 0; background: url(/gxhq/images/templatemo_button_01.png) no-repeat; color: #fff; font-size: 12px; font-weight: normal; text-align: center; text-decoration: none; } .button_01 a:hover { text-decoration: underline; } p { margin: 0px; padding: 0px; } img { margin: 0px; padding: 0px; border: none; } .cleaner { clear: both; width: 100%; height: 0px; font-size: 0px; } .cleaner_h30 { clear: both; width:100%; height: 30px; } .cleaner_h40 { clear: both; width:100%; height: 40px; } .margin_r10 { margin-right: 10px; } .float_l { float: left; } .float_r { float: right; } #templatemo_wrapper_outer { width: 100%; background: url(/gxhq/images/templatemo_body_bottom.png); background-repeat: repeat-x; background-position: bottom; } #templatemo_wrapper { width: 970px; padding: 0 10px; margin: 0 auto; } #temmplatmeo_header { height: 58px; background-repeat: no-repeat; background-position: bottom; } /* site title */ #temmplatmeo_header #site_title { float: left; width: 300px; padding: 10px 0 0 30px; } #site_title a { margin: 0px; padding: 0px; font-size: 26px; color: #ffffff; font-weight: normal; text-decoration: none; } #site_title h1 a:hover { font-weight: bold; text-decoration: none; } #site_title a span { display: block; margin-top: 5px; color: #888888; font-size: 12px; } /* end of site title */ /* menu */ #temmplatmeo_header #templatemo_menu { height: 34px; margin-top: 12px; } #templatemo_menu ul { margin: 0; padding: 0; list-style: none; } #templatemo_menu ul li { padding: 0; margin: 0; display: inline; } #templatemo_menu ul li a { float: left; display: block; height: 27px; padding: 7px 5px 0 5px; text-align: center; font-size: 12px; text-decoration: none; color: #fff; font-weight: normal; outline: none; } #templatemo_menu li a:hover, #templatemo_menu li .current { background: url(/gxhq/images/templatemo_menu_hover.png) no-repeat; } /* end of menu */ /* banner */ #templatemo_banner { clear: both; width: 970px; height: 222px; padding: 20px 0 0 0; overflow: hidden; } #templatemo_banner h2 { font-size: 24px; line-height: 28px; font-weight: normal; margin-top: 20px; color: #006699; } #templatemo_banner p { text-align: justify; margin-bottom: 15px; color: #444444; } #templatemo_banner .banner_image { float: left; position: relative; width: 330px; height: 146px; padding: 29px; margin-left: 10px; margin-right: 40px; } #templatemo_banner .banner_image span { position: absolute; width: 388px; height: 204px; top: 0; left: 0; z-index: 1000; background: url(/gxhq/images/templatemo_banner_image_frame.png); background-repeat: no-repeat; } /* end of banner */ /* content */ #templatemo_content_wrapper { clear: both; width: 970px; padding: 30px 0; } #content { float: left; margin-left: 30px; width: 610px; } #sidebar { float: left; width: 260px; } .divider { border-bottom: 1px solid #d6d6d6; } .section_w610 { clear: both; margin-bottom: 30px; padding-bottom: 30px; } #templatemo_content_wrapper h2 { color: #252525; font-weight: normal; font-size: 25px; margin: 0 0 25px 0; } #templatemo_content_wrapper p { margin-bottom: 6px; text-align: justify; } #templatemo_content_wrapper strong { color: #17aba6; font-weight: bold; } #templatemo_content_wrapper .list_01 { margin: 20px 0 0 0; padding: 0; list-style: none; } #templatemo_content_wrapper .list_01 li { display: block; float: left; width: 250px; margin: 0 10px 5px 0; padding: 5px 0 5px 40px; background: url(/gxhq/images/templatemo_list_icon.png) no-repeat center left; } .gallery { margin: 0; padding: 0; list-style: none; } .gallery li { margin: 0; padding: 0; display: block; float: left; margin-right: 1px; background-repeat: no-repeat; } .gallery li a { display: block; margin: 8px; text-decoration: none; } .gallery li a img { margin-bottom: 2px; } .gallery li a span { margin-top: 5px; color: #5e5e5e; font-weight: normal; } .news_section { background-repeat: repeat-x; background-position: top; width: 500; } #sidebar h2 { margin: 0 0 5px 0; padding: 15px 0 0 60px; height: 35px; } #sidebar h3 { color: #3b3b3b; margin: 0 0 10px 0; font-size: 15px; font-weight: bold; } #sidebar .news { background-repeat: no-repeat; background-position: left bottom; } #sidebar .testimonial { background: url(/gxhq/images/testimonial_icon.png); background-repeat: no-repeat; background-position: left bottom; } #sidebar .news_box { clear: both; margin-bottom: 10px; } #sidebar .news_box .date { float: right; color: #1b9cd5; font-size: 11px; } .news_box a { color: #666666; text-decoration: none; } .news_box a:hover { color: #000000; } #testimonial_section { padding: 20px 0 0 0; background: url(/gxhq/images/templatemo_testimonial.png); background-repeat: repeat-x; background-position: top; } .testimonial_box { margin: 5px 20px; } /* end of content */ /* footer */ #templatemo_footer { clear: both; width: 910px; margin: 0 auto; padding: 30px; } #templatemo_footer p { margin-bottom: 10px; text-align: justify; } #templatemo_footer span { color: #7989ae; } #templatemo_footer a { color: #646464; text-decoration: underline; } #templatemo_footer h3 { font-size: 18px; margin: 0 0 20px 0; color: #999999; font-weight: normal; margin-bottom: 10px; } .footer_menu_list { margin: 0px; padding: 0px; list-style: none; } .footer_menu_list li { margin: 0px; padding: 0px; } #templatemo_footer .footer_menu_list li a { color: #646464; font-weight: normal; text-decoration: underline; } #templatemo_footer .footer_menu_list li a:hover { color: #999999; text-decoration: none; } .about { float: left; width: 250px; margin-right: 40px; } .link_section { float: left; width: 140px; margin-right: 40px; } .contactus_section { float: right; width: 225px; } #copyright { padding: 20px; text-align: center; color: #646464; } #copyright a { color: #646464; text-decoration: underline; font-weight: normal; } #copyright a:hover { color: #999999; } /* end of footer */
<%@ page language="java" pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%><%@ page isELIgnored="false" %> <%String path = request.getContextPath();%>
<!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><meta http-equiv="pragma" content="no-cache" /><meta http-equiv="cache-control" content="no-cache" /><meta http-equiv="expires" content="0" /><meta http-equiv="keywords" content="keyword1,keyword2,keyword3" /><meta http-equiv="description" content="This is my page" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" /> <script language="javascript"> function gaojianDel(id) { if(confirm('您确定删除吗?')) { window.location.href="<%=path %>/gaojian?type=gaojianDel&id="+id; } } function gaojianAdd() { var url="<%=path %>/admin/gaojian/gaojianAdd.jsp"; window.location.href=url; } function down1(fujianPath,fujianYuashiMing) { var url="<%=path %>/updown/updown.jsp?fujianPath="+fujianPath+"&fujianYuashiMing="+fujianYuashiMing; url=encodeURI(url); url=encodeURI(url); window.open(url,"_self"); } </script></head>
<body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'><table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px"><tr bgcolor="#E7E7E7"><td height="14" colspan="63" background="<%=path %>/img/tbg.gif"> </td></tr><tr align="center" bgcolor="#FAFAF1" height="22"> <td width="4%">序号</td><td width="30%">标题</td><td width="10%">附件</td><td width="10%">上传时间</td><td width="10%">专家审核</td><td width="10%">主编审核</td><td width="10%">操作</td> </tr><c:forEach items="${requestScope.gaojianList}" var="gaojian" varStatus="ss"><tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22"><td bgcolor="#FFFFFF" align="center">${ss.index+1}</td><td bgcolor="#FFFFFF" align="center">${gaojian.title}</td><td bgcolor="#FFFFFF" align="center"><a href="#" style="color: red" onclick="down1('${gaojian.fujian}','${gaojian.fujianYuanshiming}')">附件下载</a></td><td bgcolor="#FFFFFF" align="center">${gaojian.shijian}</td><td bgcolor="#FFFFFF" align="center">${gaojian.zhuanjiashenhebiaozhi}</td><td bgcolor="#FFFFFF" align="center">${gaojian.zhubianshenhebiaozhi}</td><td bgcolor="#FFFFFF" align="center"><input type="button" value="删除" onclick="gaojianDel(${gaojian.id})"/></td></tr></c:forEach></table></body></html>

浙公网安备 33010602011771号