📄 addcartoubao.asp
字号:
<%
if session("pwd")<>"pass" then
response.Redirect "../hcy/login.asp"
response.end
end if
%>
<html>
<head>
<link href="../appmain.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>车辆投保登记</title>
</head>
<body bgcolor="#e1f4ee">
<table width="349" align="center" class="TOOLBARTABLE">
<tr>
<td width="341"><div align="center"><font size="6" face="隶书">车辆投保登记</font></div></td>
</tr>
</table>
<table width="300" align="center">
<tr>
<td><form name="form1" method="post" onSubmit="return CheckForm()" action="toubaosave.asp">
<table width="343" border="1" class="TOOLBARTABLE">
<tr>
<td width="72">序 号</td>
<td width="228"><input name="aa" type="text" class="input_plane2" id="aa" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>承租人</td>
<td><input name="bb" type="text" class="input_plane2" id="bb" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>车牌号</td>
<td><input name="cc" type="text" class="input_plane2" id="cc" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td height="20">保险日期</td>
<td><input name="dd" type="text" class="input_plane2" id="dd" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'" size="10" >
到
<input name="ee" type="text" class="input_plane2" id="ee" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'" size="10"></td>
</tr>
<tr>
<td>第三者责任险</td>
<td><input name="ff" type="text" class="input_plane2" id="ff" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>司乘人员险</td>
<td><input name="gg" type="text" class="input_plane2" id="gg" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>车损险</td>
<td><input name="hh" type="text" class="input_plane2" id="hh" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>备 注</td>
<td><input name="ii" type="text" class="input_plane2" id="ii" onmouseover="this.style.backgroundColor='#e1f4ee'" onmouseout="this.style.backgroundColor='#ffffff'"></td>
</tr>
<tr>
<td>单位</td>
<td><select name="jj" id="jj">
<option value="请选择" selected>请选择</option>
<option value="aa">丽水市汽运集团有限公司货长运公司</option>
</select></td>
</tr>
<tr>
<td> </td>
<td> <div align="left">
<input name="Submit" type="submit" class="button" value="确定提交" >
<input name="Submit2" type="reset" class="button" value="重新再来" >
</div></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
<script language=javascript>
function CheckForm()
{
if(document.form1.aa.value=="")
{
alert("请输入序号!");
document.form1.aa.focus();
return false;
}
if(document.form1.bb.value == "")
{
alert("请输入承租人!");
document.form1.bb.focus();
return false;
}
if(document.form1.cc.value == "")
{
alert("请输入车牌号!");
document.form1.cc.focus();
return false;
}
if(document.form1.dd.value == "")
{
alert("请输入保险日期!");
document.form1.dd.focus();
return false;
}
if(document.form1.ee.value == "")
{
alert("请输入保险日期!");
document.form1.ee.focus();
return false;
}
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -