insertqyxz.jsp~1~
来自「客户关系管理系统,包括数据库,类,所有运行所需的代码及文件」· JSP~1~ 代码 · 共 53 行
JSP~1~
53 行
<%@ page contentType="text/html; charset=gb2312"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加企业性质</title>
<style type="text/css">
<!--
body {
background-color: #FFFFCC;
}
-->
</style></head>
<script language="JavaScript">
function RgTest(){
if(document.form.xzmc.value==""){
window.alert("请输入企业性质名称");
document.form.xzmc.focus();
return false;
}
return true;
}
</script>
<body>
<%CqyxzForm qyxz=(CqyxzForm)request.getAttribute("form");%>
<div align="center">
<p>添加企业性质</p>
<form name="form" method="post" action="" onSubmit="return RgTest()">
<table width="360" border="3" cellspacing="3" cellpadding="3">
<tr>
<td width="92" height="60">企业性质编号</td>
<td width="237"><input type="hidden" name="id" value="<%=request.getAttribute("changeType")%>"><%=request.getAttribute("changeType")%></td>
</tr>
<tr>
<td height="60">企业性质名称</td>
<td><input type="text" name="xzmc"></td>
</tr>
<tr>
<td height="60">备注</td>
<td><input type="text" name="bz"></td>
</tr>
</table>
<p>
<input type="submit" name="Submit2" value="提交">
<input type="reset" name="Submit" value="重置">
</p>
</form>
<p> </p>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?