📄 updatebank.jsp~1~
字号:
<%@ 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.name.value==""){
window.alert("请输入银行名称");
document.form.name.focus();
return false;
}
return true;
}
</script>
<body>
<%List%>
<div align="center">
<p>修改银行信息</p>
<form name="form" method="post" action="cbankUpdate.do" onSubmit="return RgTest()">
<table width="371" border="3" cellspacing="3" cellpadding="3">
<tr>
<td width="84" height="50">银行编号</td>
<td width="256"><input type="hidden" name="id" value=""></td>
</tr>
<tr>
<td height="50">银行名称</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td height="50">备注</td>
<td><input type="text" name="bz" value=""></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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -