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

📄 rightpagemanage1.jsp

📁 一个目前正在上线运行的JSP企业网站系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
<jsp:include page="/CheckLogin1.jsp" flush="true"/> <% Session m_session = new Session(session); %>
<%
Request m_request = new Request(request);
int iModuleID =m_request.GetInt("ModuleID");
Vector vt = PageRight.getRecordByModuleID(iModuleID);
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
<title>模块页面信息管理-- </title>
<link href="../css/txt.jsp" rel="stylesheet" type="text/css">
<script language="JavaScript" src="/js/changestyle.js"></script>
<script language="JavaScript" type="text/javascript">
function checkaddrightpage()
{
    if(document.addrightpage.PageURL.value=='')
    {
        alert("请输入模块页面URL!");
        document.addrightpage.PageURL.focus();
        return false;
    }
}
</script>
</head>
<body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
<table width="100%" height="100%" border="0" align="center" cellspacing="0">
    <tr>
        <td align="center" valign="top"><p>&nbsp;</p>
            <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
                <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
                    <th width="6%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
                    <th width="8%" nowrap><font color="#000000">编号</font></th>
                    <th width="52%" nowrap><font color="#000000">模块页面URL</font></th>
                    <th width="11%" nowrap><font color="#000000">添加</font></th>
                    <th width="11%" nowrap><font color="#000000">修改</font></th>
                    <th width="12%" nowrap><font color="#000000">删除</font></th>
                </tr>
                <%
for(int i=0;i<vt.size();i++)
{
    String strID = ((Vector)vt.get(i)).get(0).toString();
    if(i % 2 == 0)
        out.println("<tr id=\"Row"+ i+ "\" class=\"DataRowsSingle\" onmouseover=\"mouseon(this,'image" + i + "');\" onmouseout=\"mouseout(this,'image" + i + "','DataRowsSingle');\">");
    else
    out.println("<tr id=\"Row"+ i+ "\" class=\"DataRowsDouble\" onmouseover=\"mouseon(this,'image" + i + "');\" onmouseout=\"mouseout(this,'image" + i + "','DataRowsDouble');\">");
    out.println("<td align=\"right\" valign=\"middle\"><img id=\"image" + i + "\" src=\"../images/lastpost1.gif\" style=\"display:none;\"> </td>");
    out.println("<td align=\"right\" valign=\"middle\">" + (i+1) + "</td>");
    out.println("<td align=\"left\" valign=\"middle\" nowrap>" + ((Vector)vt.get(i)).get(1).toString() + "</td>");
    out.println("<td align=\"center\" valign=\"middle\" nowrap>&nbsp;</td>");
    out.println("<td align=\"center\" valign=\"middle\" nowrap><a href=\"EditRightPage.jsp?ID=" + strID + "&ModuleID=" + iModuleID + "\">修改</a></td>");
    out.println("<td align=\"center\" valign=\"middle\" nowrap><a href=\"DelRightPage.jsp?ID=" + strID + "&ModuleID=" + iModuleID + "\" onclick=\"return confirm('您确实要删除该模块页面吗?');\" target=\"hidden\">删除</a></td>");
    out.println("</tr>");
}
%>
                <form name="addrightpage" action="AddRightPageAction.jsp" method="post" onSubmit="javascript:return checkaddrightpage();" target="hidden">
                    <tr bgcolor="<%=m_session.GetString("TitleColor")%>">
                        <th align="right" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">&nbsp;</th>
                        <th align="right" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">&nbsp;</th>
                        <th align="left" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">
                            <input name="PageURL" type="text" maxlength="100" size="40">
                            <input name="ModuleID" value="<%=iModuleID%>" type="hidden">
                        </th>
                        <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">
                          <input type="submit" value="添加"></th>
                        <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">&nbsp;</th>
                        <th align="center" valign="middle" nowrap bgcolor="<%=m_session.GetString("TitleColor")%>">&nbsp;</th>
                    </tr>
                </form>
            </table>
        </td>
    </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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