日期:2014-05-18  浏览次数:20714 次

struts页面显示问题
<%@   page   contentType= "text/html;   charset=GBK "   %>
<%@   taglib   uri= "/WEB-INF/struts-bean.tld "   prefix= "bean "   %>
<%@   taglib   uri= "/WEB-INF/struts-html.tld "   prefix= "html "   %>
<%@   taglib   uri= "/WEB-INF/struts-logic.tld "   prefix= "logic "   %>
<jsp:include   flush= "false "   page= "isLogin.jsp "/>
<html>
<head>
<title>
jsp1
</title>
<script   type= " "   language= "javascript "   src= "js/public.js "> </script>
</head>
<body   bgcolor= "#ffffff ">
<center>
    <table>
        <tr>
            <th>
                <a   href= "BooksPageAction.do "> <bean:message   key= "jsp.user.index.menu.scanbooks "/> </a>
            </th>
            <th>
                <a   href= "LendBookListAction.do "> <bean:message   key= "jsp.user.index.menu.scanlendbook "/> </a>
            </th>
            <th>
                <a   href= "UserPunishPageAction.do?page=1 "> <bean:message   key= "jsp.user.index.menu.scanpunish "/> </a>
            </th>
            <th>
                <a   href= "index.jsp?action=4 "> <bean:message   key= "jsp.user.index.menu.chengeinfo "/> </a>
            </th>
            <th>
                <a   href= "OutAction.do "> <bean:message   key= "jsp.user.index.menu.loginout "/> </a>
            </th>
        </tr>
    </table>
    <table>
        <tbody>
        <logic:equal   parameter= "action "   value= "1 ">
        <jsp:include   flush= "false "   page= "booklist.jsp "/>
        </logic:equal>
        <logic:equal   parameter= "action "   value= "2 ">
      <jsp:include   flush= "false "   page= "lendlist.jsp "/>
        </logic:equal>
        <logic:equal   parameter= "action "   value= "3 ">
      <jsp:include   flush= "false "   page= "punishlist.jsp "/>
        </logic:equal>
    &n