📄 addenterprise.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<jsp:include flush="true" page="../../head/chinahrhead.jsp"></jsp:include>
<jsp:include flush="true" page="menu.jsp"></jsp:include>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>新增企业用户</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<script type="text/javascript">
var now=new Date();
function setCurDate(){
var year=now.getYear();
var month=now.getMonth();
var day=now.getDate();
var hours=now.getHours();
var minutes=now.getMinutes();
var seconds=now.getSeconds();
var timeString = year+"-"+(month+1)+"-"+day;
var oCtl = document.forms[0].elements["userCompany.CRegistertime"];
if(oCtl.value==null || oCtl.value=="")
{
oCtl.value = timeString;
}
}
function doSubmit()
{
document.forms[0].action="/ChinaHR/doEnterprise.do?operate=doAddEnterprise&oper=${requestScope.oper}";
document.forms[0].submit();
}
</script>
<link rel="stylesheet" href="../../css/admin.css" type="text/css"></link>
<link rel="stylesheet" href="../../css/style.css" type="text/css"></link></head>
<body>
<html:form action="/doEnterprise.do?operate=doAddEnterprise" method="post">
<table class="table2" cellspacing="1" cellpadding="0" border="0" width="700px" align="center">
<tr><th>公司名称:</th><td><html:text property="userCompany.name"/></td>
<th>所在地:</th><td><html:text property="userCompany.smallAddress" /></td>
</tr>
<tr><th>地址:</th><td><html:text property="userCompany.CAddress"/></td>
<th>联系电话:</th><td><html:text property="userCompany.CTel" /></td></tr>
<tr><th>联系人:</th><td><html:text property="userCompany.CLinkman"/></td>
<th>联系人职位:</th><td><html:text property="userCompany.CLinkjob"/></td></tr>
<tr><th>电子邮箱:</th><td><html:text property="userCompany.CEmail"/></td>
<th>用户名:</th><td><html:text property="userCompany.CUserName" /></td></tr>
<tr><th>密码:</th><td><html:password property="userCompany.CUserPass"/></td>
<th>公司简称:</th><td><html:text property="userCompany.CShName"/></td></tr>
<tr><th>营业执照号:</th><td><html:text property="userCompany.CBussNum"/></td>
<th>公司性质:</th><td><html:text property="userCompany.CComKind" /></td>
</tr>
<tr><th>公司规模:</th><td><html:text property="userCompany.CComScope"/></td>
<th>邮编:</th><td><html:text property="userCompany.CPostcode" /></td>
</tr>
<tr><th>公司网址:</th><td><html:text property="userCompany.CNetSite"/></td>
<th>传真:</th><td><html:text property="userCompany.CFax" /></td>
</tr>
<tr><th>所属行业:</th><td><html:text property="userCompany.CTrade"/></td>
<th>公司简介:</th><td><html:text property="userCompany.CContent" /></td>
</tr>
<tr><th>收E-mail格式:</th><td><html:text property="userCompany.CAcceptMail"/></td>
<th>注册时间:</th>
<td><html:text property="userCompany.CRegistertime"/><font color=blue>格式:yyyy-MM-dd 如:2008-10-09</font></td>
</tr>
<tr><td colspan="4" align="center"><input type="button" onclick="doSubmit();" value="提交"/><html:reset value="重置"/></td></tr>
</table>
<html:hidden property="userCompany.CId"/>
</html:form>
<script type="text/javascript">
setCurDate();
</script>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -