📄 areaadd.asp
字号:
<!--#include file="../conndb.asp"-->
<!--#include file="isAdmin.asp"-->
<html>
<head>
<title>添加地域</title>
<link href=../style.css rel=STYLESHEET type=text/css>
<Script Language="JavaScript">
function checkFields() {
if (myform.title.value=="") {
alert("地域名称不能为空");
myform.title.onfocus();
return false;
}
return true;
}
</Script>
</head>
<body>
<form name="myform" method="POST" action="AreaSave.asp?action=add" OnSubmit="return checkFields()">
<table border="0" width="100%" cellspacing="1">
<tr>
<td width="100%">地域类型
<select name="slt">
<option value="0" selected>本市</option>
<option value="1">外埠</option>
</select></td>
</tr>
<tr>
<td width="100%">地域名称
<input type="text" name="title" size="20"></td>
</tr>
</table>
<p align="center"><input type="submit" value=" 提 交 " name="B1">
<input type="reset" value=" 重写 " name="B2"></p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -