📄 self.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/taglib/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/taglib/struts-logic.tld" prefix="logic"%>
<%
String strSkinBase = site.bean.SitePara.strVirtualName + site.bean.SitePara.strManageFolder + "/" + igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookieAdminTheme,"stand");
String strCssPath = strSkinBase + "/css/" + igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookieManageStyleName,"1") + "/style.css";
%>
<html>
<head>
<title>编辑个性设置</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<link rel="stylesheet" type="text/css" href="<%=strCssPath%>">
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/public.js"></script>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/check.js"></script>
<script Language="JavaScript">
<!--
function CheckForm(loObj){
if(!Check(loObj)) return false;
if(getObject("PERNUM").value=="0"){
alert("每页显示的记录数不能为0!");
getObject("PERNUM").focus();
return false;
}
return true;
}
function init(){
SetSelValue("PANEL","<%=igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookieDefaultMenu,"")%>");
}
//-->
</script>
</head>
<body class="bodycolor" topmargin="5" onload="init();">
<table border="0" width="90%" cellspacing="0" cellpadding="3" class="small">
<tr>
<td class="Big"><img src="<%=strSkinBase%>/images/menu/person_info.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 个性设置</span><br></td>
</tr>
</table>
<table border="0" width="600" cellpadding="2" cellspacing="1" align="center" bgcolor="#000000" class="small">
<form action="?action=uself" method="post" name="form1" onsubmit="return CheckForm(this);">
<tr>
<td colspan=2 class="TableHeader"><img src="<%=strSkinBase%>/images/green_arrow.gif" align="absmiddle"> 界面选项 - 以下部分设置需重新登录后生效</td>
</td>
</tr>
<tr>
<td nowrap class="TableData">界面主题:</td>
<td class="TableData">
<select name="THEME" class="BigSelect">
<logic:iterate name="theme" id="theme"><option value="<bean:write name="theme" property="strValue1"/>" <logic:equal name="theme" property="strValue3" value="1">selected</logic:equal>><bean:write name="theme" property="strValue2"/></option></logic:iterate>
</select>
</td>
</tr>
<tr>
<td nowrap class="TableData">登录模式:</td>
<td class="TableData">
<select name="LOGINTYPE" class="BigSelect">
<option value="1" <logic:equal name="para" property="strValue1" value="1">selected</logic:equal>>在本窗口打开</option>
<option value="2" <logic:equal name="para" property="strValue1" value="2">selected</logic:equal>>在新窗口打开(全屏)</option>
</select>
</td>
</tr>
<tr>
<td nowrap class="TableData">登录后显示的左侧面板:</td>
<td class="TableData">
<select name="PANEL" class="BigSelect">
<option value="">主菜单</option>
<logic:present name="topMenu"><logic:iterate name="topMenu" id="topMenu">
<logic:equal name="topMenu" property="strValue4" value="0">
<option value="<bean:write name="topMenu" property="strValue1"/>"> ├ <bean:write name="topMenu" property="strValue2"/></option>
</logic:equal>
<logic:equal name="topMenu" property="strValue4" value="1">
<option value="<bean:write name="topMenu" property="strValue1"/>"> └ <bean:write name="topMenu" property="strValue2"/></option>
</logic:equal>
</logic:iterate></logic:present>
<option value="KJZ" >快捷组</option>
<option value="SCJ" >收藏夹</option>
</select>
</td>
</tr>
<tr>
<td nowrap class="TableData">每页显示记录数:</td>
<td class="TableData"><input type="text" name="PERNUM" value="<%=igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookiePagerName,"20")%>" EmptyDisable label="每页显示记录数" size="5" maxlength="2">
</td>
</tr>
<tr align="center" class="TableControl">
<td colspan="2" nowrap>
<input type="submit" value="保存修改" class="BigButton">
<input type="button" value="返回" class="BigButton" onClick="location='<%=strSkinBase%>/person/';">
</td>
</tr>
</table>
</form>
<br>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -