⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 moneywareselect.jsp

📁 关于网上汽车销售系统的详细编程项目实战实例
💻 JSP
字号:
<%@ page language="java" pageEncoding="gbk"%>

<%@ 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>MoneyWareSelect.jsp</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">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

</head>
<script type="text/javascript">
 function checkform(){  
//客户名称
	var cusName=document.moneyWareViewForm.cusName.value;
		alert(cusName);
	if(cusName.length==0)
	{
		alert("客户名称不能为空");
		document.moneyWareViewForm.cusName.focus();
		return false;
	}
	var begin = document.moneyWareViewForm.wareDateBegin.value;
	if(begin.length==0){
		alert("核销日期(起)不能为空");
		document.moneyWareViewForm.wareDateBegin.focus();
		return false;
	}
	var end = document.moneyWareViewForm.wareDateEed.value;
	if(end.length==0){
		alert("核销日期(止)不能为空");
		document.moneyWareViewForm.wareDateEed.focus();
		return false;
	}
}
</script>
<body bgcolor="#CFFFF">
	<h2 align="center">
		回款核销查询
	</h2>
	<hr align="center">
	<html:form action="/moneyWare.do" onsubmit="return checkform()">
		<table border="1" align="center" id="MoneyWareSelect"
			bordercolor="#CDDDD">
			<tr bordercolor="#CDDDD">
				<td>
					客户名称
				</td>
				<td>
					<html:text property="cusName"></html:text>*
				</td>
			</tr>
	
			<tr bordercolor="#CDDDD">
				<td>
					核销日期(起)
				</td>
				<td>
					<html:text property="wareDateBegin"></html:text>*
				</td>
			</tr>
		
			<tr bordercolor="#CDDDD">
				<td>
					核销日期(止)
				</td>
				<td>
					<html:text property="wareDateEed"></html:text>*
				</td>
			</tr>
		
			<tr bordercolor="#CDDDD">
				<td>
					核销单号
				</td>
				<td>
					<html:text property="wareId"></html:text>
				</td>

			</tr>
	
			<tr bordercolor="#CDDDD">
				<td align="center">
					<html:submit value="提交"></html:submit>
				</td>
				<td align="center">
					<html:reset value="重置"></html:reset>
				</td>
			</tr>
		</table>
	</html:form>
	

</body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -