📄 visit.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="/inc/pv/admin.jsp"%>
<%@ include file="/inc/public/msg.jsp"%>
<%
/*****
*
* 功能介绍:根据当前的MenuId,对应的action名和当前用户,判断是否有进入此页面的权限
*
*/
if(checkPv(strMenuId,"b2c",user)<0){
noPv(out);
return;
}
%>
<%
/****************************具体的功能实现代码****************************/
String strCurMenuName = igec.site.base.business.DataUtilBusiness.getFieldValue("TITLE","TAB_IGECMENU","WHERE ID='" + strMenuId + "'");
String strCurMenuPic = igec.site.base.business.DataUtilBusiness.getFieldValue("SHOWIMG","TAB_IGECMENU","WHERE ID='" + strMenuId + "'");
%>
<html>
<head>
<title><%=strCurMenuName%></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" src="<%=strSkinBase%>/js/forbid.js"></script>
</head>
<body class="bodycolor" topmargin="5">
<table border="0" width="90%" cellspacing="0" cellpadding="3" class="small">
<tr>
<td class="Big"><img src="<%=strSkinBase%>/images/menu/sys/<%=strCurMenuPic%>" WIDTH="22" HEIGHT="20" align="absmiddle"> <span class="big3"><%=strCurMenuName%></span><br></td>
</tr>
</table>
<BR><BR>
<table border="0" cellpadding="0" cellspacing="0" align="center" width="90%">
<tr><td>
<table border="0" cellpadding="2" cellspacing="1">
<tr align="center">
<td class="TableControl" width="100" style="cursor:hand;font-size:14px" onclick="self.location='base.jsp?iid=<%=strMenuId%>';"><B>基本参数</B></td>
<td width="100" class="TableControl" style="cursor:hand;font-size:14px" onclick="self.location='advance.jsp?iid=<%=strMenuId%>';" style="display:none"><B>高级参数</B></td>
<td width="100" class="TableControl" style="cursor:hand;font-size:14px" onclick="self.location='email.jsp?iid=<%=strMenuId%>';" style="display:none"><B>邮件配置</B></td>
<td width="100" class="TableControl" style="cursor:hand;font-size:14px" onclick="self.location='b2c.jsp?iid=<%=strMenuId%>';" style="display:none"><B>B2C充值</B></td>
<td width="100" class="TableHeader" style="cursor:hand;font-size:14px" onclick="self.location='visit.jsp?iid=<%=strMenuId%>';"><B>外部访问参数</B></td>
</tr>
</table>
<table border="0" name="objBody" id="objBody" width="100%" cellpadding="2" cellspacing="1" bgcolor="#000000" class="small">
<form action="<%=site.bean.SitePara.strVirtualName + site.bean.SitePara.strManageFolder%>/para.do?action=visit" method="post" name="form1" onsubmit="return Check(this);" target="YL_FRAME_PARA">
<tr>
<td nowrap class="TableContent">BBS访问地址:</td>
<td class="TableContent">
<input type="text" name="BBSVisitUrl" id="BBSVisitUrl" size="20" maxlength="50" class="BigInput" value="<%=site.bean.SitePara.strBBSUrl%>" EmptyDisable label="BBS访问地址"> <font color="#FF0000">必填</font> 访问BBS的路径,为BBS的部署名称
</td>
</tr>
<tr style="display:none">
<td nowrap class="TableContent"> 交易网站访问地址:</td>
<td class="TableContent">
<input type="text" name="TradeSiteUrl" id="TradeSiteUrl" size="40" maxlength="100" class="BigInput" value="<%=site.bean.SitePara.strTradeUrl%>" label="交易网站访问地址"> <font color="#FF0000">必填</font> 需要指定电子交易网站的完整域名,保留前面的HTTP://字符
</td>
</tr>
<tr align="center" class="TableControl">
<td colspan="2" nowrap>
<input type="submit" value="保存" class="BigButton">
<input type="reset" value="重置" class="BigButton" onClick="javascript:window.close();">
</td>
</tr>
</form>
</table>
</td></tr>
</table>
<iframe name="YL_FRAME_PARA" id="YL_FRAME_PARA" width="0" height="0" style="display:none"></iframe>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -