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

📄 basicinfo.jsp

📁 JSP购物车(SQLserver版) ================== 简单的JSP电子商务网站购物车 带结算功能,带注册系统 大二时自己编写的,供大家参考学习 功能不是很详尽,美工
💻 JSP
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8" %><%@ include file="../inc/common.jsp" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${basic.name}后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<club:html type="css" />
<style>.ipu{width:400px;}</style>
<script type="text/javascript" src="../scripts/common.js"></script>
</head>
<body>
<div id="wrap">
<div class="sitemap"><ul><li>您的位置:</li><li>后台管理&gt;&gt;</li><li><h3>过滤字符设置</h3></li></ul></div><%
com.yeqiangwei.club.controller.form.BasicInfoForm basicInfoForm = basicInfoJsp.getBasicInfoForm();
%><%@ include file="../inc/msgHint.jsp" %>
<div class="sidebar gform">
<form id="gform" name="gform" action="admin.do?act=basicInfo" method="post" onsubmit="c.p('qwSubmit',true)">
<table summary="过滤字符设置" class="tabform">
<tbody>
<tr>
<th scope="row">社区名字:</th>
<td><club:html type="input" htmlType="text" name="name" value="<%=basicInfoForm.getName()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">网页Title:</th>
<td><club:html type="input" htmlType="text" name="title" value="<%=basicInfoForm.getTitle()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">URL:</th>
<td><club:html type="input" htmlType="text" name="url" value="<%=basicInfoForm.getUrl()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">keywords:</th>
<td><club:html type="input" htmlType="text" name="keywords" value="<%=basicInfoForm.getKeywords()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">description:</th>
<td><club:html type="input" htmlType="text" name="description" value="<%=basicInfoForm.getDescription()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Email地址:</th>
<td><club:html type="input" htmlType="text" name="emailAddress" value="<%=basicInfoForm.getEmailAddress()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Email发送人:</th>
<td><club:html type="input" htmlType="text" name="emailSender" value="<%=basicInfoForm.getEmailSender()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Smtp Server:</th>
<td><club:html type="input" htmlType="text" name="smtpServer" value="<%=basicInfoForm.getSmtpServer()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Smtp帐号:</th>
<td><club:html type="input" htmlType="text" name="smtpId" value="<%=basicInfoForm.getSmtpId()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Smtp密码:</th>
<td><club:html type="input" htmlType="text" name="smtpPassword" value="<%=basicInfoForm.getSmtpPassword()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Smtp是否需要验证:</th>
<td>
<club:html type="input" name="smtpIsNeedPassword" htmlType="radio" value="true" ovalue="<%=String.valueOf(basicInfoForm.getSmtpIsNeedPassword())%>" />需要
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="smtpIsNeedPassword" htmlType="radio" value="false" ovalue="<%=String.valueOf(basicInfoForm.getSmtpIsNeedPassword())%>" />不需要
</td>
</tr>
<tr>
<th scope="row">Smtp端口:</th>
<td><club:html type="input" htmlType="text" name="smtpPort" value="<%=basicInfoForm.getSmtpPort()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">Smtp是否需要SSL:</th>
<td>
<club:html type="input" name="smtpIsNeedSSL" htmlType="radio" value="true" ovalue="<%=String.valueOf(basicInfoForm.getSmtpIsNeedSSL())%>" />需要
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="smtpIsNeedSSL" htmlType="radio" value="false" ovalue="<%=String.valueOf(basicInfoForm.getSmtpIsNeedSSL())%>" />不需要
</td>
</tr>
<tr>
<th scope="row">密码加密方式:</th>
<td>
<select name="passwordEncrypt">
<club:html type="option" htmlType="option" name="md5of16" value="md5of16" ovalue="<%=basicInfoForm.getPasswordEncrypt()%>"/>
<club:html type="option" htmlType="option" name="md5of32" value="md5of32" ovalue="<%=basicInfoForm.getPasswordEncrypt()%>"/>
<club:html type="option" htmlType="option" name="md5" value="md5" ovalue="<%=basicInfoForm.getPasswordEncrypt()%>"/>
</select>
</td>
</tr>
<tr>
<th scope="row">用户注册类型:</th>
<td>
<club:html type="input" name="userAllowedType" htmlType="radio" value="0" ovalue="<%=String.valueOf(basicInfoForm.getUserAllowedType())%>" />直接通过验证
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="userAllowedType" htmlType="radio" value="1" ovalue="<%=String.valueOf(basicInfoForm.getUserAllowedType())%>" />人工验证
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="userAllowedType" htmlType="radio" value="2" ovalue="<%=String.valueOf(basicInfoForm.getUserAllowedType())%>" />Email发送确认信息
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="userAllowedType" htmlType="radio" value="3" ovalue="<%=String.valueOf(basicInfoForm.getUserAllowedType())%>" />手机验证
</td>
</tr>
<tr>
<th scope="row">文章通过类型:</th>
<td>
<club:html type="input" name="topicAllowedType" htmlType="radio" value="0" ovalue="<%=String.valueOf(basicInfoForm.getTopicAllowedType())%>" />直接通过
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="topicAllowedType" htmlType="radio" value="1" ovalue="<%=String.valueOf(basicInfoForm.getTopicAllowedType())%>" />需要验证
</td>
</tr>
<tr>
<th scope="row">热贴要求查阅次数:</th>
<td><club:html type="input" htmlType="text" name="hotTopicViews" value="<%=String.valueOf(basicInfoForm.getHotTopicViews())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">热贴要求回复次数:</th>
<td><club:html type="input" htmlType="text" name="hotTopicReplys" value="<%=String.valueOf(basicInfoForm.getHotTopicReplys())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">刷新时间:</th>
<td><club:html type="input" htmlType="text" name="refreshTime" value="<%=String.valueOf(basicInfoForm.getRefreshTime())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">版本号:</th>
<td><club:html type="input" htmlType="text" name="version" value="<%=String.valueOf(basicInfoForm.getVersion())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">版权信息:</th>
<td><textarea name="copyright" style="width:400px;"/><%=String.valueOf(basicInfoForm.getCopyright().replace("&","&amp;"))%></textarea></td>
</tr>
<tr>
<th scope="row">新用户欢迎短信:</th>
<td><textarea name="userMessage" style="width:400px;"/><%=String.valueOf(basicInfoForm.getUserMessage())%></textarea></td>
</tr>
<tr>
<th scope="row">注册协议:</th>
<td><textarea name="agreement" style="width:400px;"/><%=String.valueOf(basicInfoForm.getAgreement())%></textarea></td>
</tr>
<tr>
<th scope="row">社区图片目录:</th>
<td><club:html type="input" htmlType="text" name="imagePath" value="<%=String.valueOf(basicInfoForm.getImagePath())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">社区CSS目录:</th>
<td><club:html type="input" htmlType="text" name="cssPath" value="<%=String.valueOf(basicInfoForm.getCssPath())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">UrlRewrite:</th>
<td>
<club:html type="input" name="urlRewrite" htmlType="radio" value="true" ovalue="<%=String.valueOf(basicInfoForm.getUrlRewrite())%>" />开启
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="urlRewrite" htmlType="radio" value="false" ovalue="<%=String.valueOf(basicInfoForm.getUrlRewrite())%>" />关闭
</td>
</tr>
<tr>
<th scope="row">Passport:</th>
<td>
<club:html type="input" name="passport" htmlType="radio" value="true" ovalue="<%=String.valueOf(basicInfoForm.getPassport())%>" />开启
&nbsp;&nbsp;&nbsp;&nbsp;
<club:html type="input" name="passport" htmlType="radio" value="false" ovalue="<%=String.valueOf(basicInfoForm.getPassport())%>" />关闭
</td>
</tr>
<tr>
<th scope="row">上传域名:</th>
<td><club:html type="input" htmlType="text" name="fileUploadDomain" value="<%=basicInfoForm.getFileUploadDomain()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">允许上传的文件类型:</th>
<td><club:html type="input" htmlType="text" name="fileUploadAllowedExt" value="<%=basicInfoForm.getFileUploadAllowedExt()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">最大上传尺寸:</th>
<td><club:html type="input" htmlType="text" name="fileUploadMaxSize" value="<%=String.valueOf(basicInfoForm.getFileUploadMaxSize())%>" property=" class=\"ipu\""/>单位字节(bytes)</td>
</tr>
<tr>
<th scope="row">是否开通上传:</th>
<td><club:html type="input" htmlType="text" name="fileUploadIsOpen" value="<%=String.valueOf(basicInfoForm.getFileUploadIsOpen())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">默认上传允许总量:</th>
<td><club:html type="input" htmlType="text" name="fileUploadUserSize" value="<%=String.valueOf(basicInfoForm.getFileUploadUserSize())%>" property=" class=\"ipu\""/>单位字节(bytes)</td>
</tr>
<tr>
<th scope="row">网站根目录:</th>
<td><club:html type="input" htmlType="text" name="sitePath" value="<%=basicInfoForm.getSitePath()%>" property=" class=\"ipu\""/>单位字节(bytes)</td>
</tr>
<tr>
<th scope="row">版面最大分页数:</th>
<td><club:html type="input" htmlType="text" name="maxpage" value="<%=String.valueOf(basicInfoForm.getMaxpage())%>" property=" class=\"ipu\""/>0为不限制</td>
</tr>
<tr>
<th scope="row">索引存放目录:</th>
<td><club:html type="input" htmlType="text" name="indexPath" value="<%=basicInfoForm.getIndexPath()%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">索引缓冲个数:</th>
<td><club:html type="input" htmlType="text" name="maxBufferedDocs" value="<%=String.valueOf(basicInfoForm.getMaxBufferedDocs())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">索引合并个数:</th>
<td><club:html type="input" htmlType="text" name="mergeFactor" value="<%=String.valueOf(basicInfoForm.getMergeFactor())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">索引关键词个数:</th>
<td><club:html type="input" htmlType="text" name="maxFieldLength" value="<%=String.valueOf(basicInfoForm.getMaxFieldLength())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row">索引服务器代号:</th>
<td><club:html type="input" htmlType="text" name="userIndexServer" value="<%=String.valueOf(basicInfoForm.getUserIndexServer())%>" property=" class=\"ipu\""/></td>
</tr>
<tr>
<th scope="row"></th>
<td class="t_end">
<input type="submit" name="qwSubmit" id="qwSubmit" value="确定提交">
</td>
</tr>
</tbody>
</table>
</form>
</div>
</body>
</html>
<!-- Powered by www.YeQiangWei.com -->

⌨️ 快捷键说明

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