📄 nologin.jsp
字号:
<%@page contentType="text/html;charset=GBK" %>
<%@ taglib uri="/bean" prefix="bean" %>
<%@ taglib uri="/html" prefix="html" %>
<%@ taglib uri="/logic" prefix="logic" %>
<%@ taglib uri="/keyshop" prefix="keyshop" %>
<%@include file="/jsp/pub/pub.jsp"%>
<%
//设置网页title, 关键字,网页描述。
PAGETITLE = "登录页面" + PAGETITLE;
PAGEDESCRIPTION = PAGETITLE;
PAGEKEYWORDS = PAGETITLE;
%>
<script>
<%
String requestPageUrl = request.getParameter("requestPageUrl");
String returnUrl = (String)request.getAttribute("returnUrl");
if(!StringUtil.isEmpty(returnUrl)) {
%>
window.location='<%=returnUrl%>';
<%
}
%>
//Function trim a string
function trim(Str , Flag)
{
Str = ""+Str;
if( Flag == "l" || Flag == "L" )/*trim left side only*/
{
RegularExp = /^\s+/gi;
return Str.replace( RegularExp,"" );
}
else if( Flag == "r" || Flag == "R" )/*trim right side only*/
{
RegularExp = /\s+$/gi;
return Str.replace( RegularExp,"" );
}
else/*defautly, trim both left and right side*/
{
RegularExp = /^\s+|\s+$/gi;
return Str.replace( RegularExp,"" );
}
}
function submitForm() {
if(trim(document.all['bean.id'].value) == "") {
alert("请输入用户名");
document.all['bean.id'].focus();
return;
}
if(trim(document.all['bean.password'].value) == "") {
alert("请输入密码");
document.all['bean.password'].focus();
return;
}
document.fguserForm.submit();
}
</script>
<%@include file="/jsp/pub/top.jsp"%>
<table width="830" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="181" valign="top">
<table width="181" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<!--左侧商品分类列表-->
<%@include file="/jsp/pub/sm/categorytree.jsp"%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=5></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=5></td>
</tr>
</table>
<!--左侧信息列表-->
<jsp:include page="/jsp/pub/sm/leftContentList.jsp">
<jsp:param name="channelId" value="<%=currentChannel.getId()%>"/>
<jsp:param name="searchKey" value="<%=LEFT_CONTENT%>"/>
<jsp:param name="position" value="1"/>
</jsp:include>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=5></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<!--左侧广告-->
<jsp:include page="/jsp/pub/adContentView.jsp">
<jsp:param name="channelId" value="<%=currentChannel.getId()%>"/>
<jsp:param name="searchKey" value="<%=AD_CATEGORY_LEFT%>"/>
<jsp:param name="position" value="1"/>
</jsp:include>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height=5></td>
</tr>
</table>
<!--网上调查-->
<%@include file="/jsp/pub/sm/inquisition.jsp"%>
</td>
</tr>
</table>
</td>
<td width="0" align="center" valign="top"><br>
<!--页面文件-->
<%@include file="/fg/user/sub_filer/nologin_sub.jsp"%>
</td>
</tr>
</table>
<!--底部文件-->
<%@include file="/jsp/pub/bottom.jsp"%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -