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

📄 modcurrentorder.jsp

📁 本系统是struts+hibernate完成的,主要功能是一个网上购物管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>

<%@ 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>当前账单信息更新</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 href="../../style/style.css" rel="stylesheet" type="text/css">
	<link href="../../style/stylea.css" rel="stylesheet" type="text/css">
	<script type="text/javascript" src="../../scripts/publicjs.js"></script>
</head>

<body leftmargin="8" topmargin="5" marginwidth="0" marginheight="0">
	<html:form action="/updateCurrent.do?method=updateCurrentOrder">
		<table width="334" height="29" border="0" align="center"
			cellpadding="0" cellspacing="0">
			<tr>
				<td width="341" height="28"
					background="../../images/right_title_bg.gif">
					<div align="center" class="title-font">
						当前账单信息更新管理
					</div>
				</td>
			</tr>

		</table>
		<table width="333" border="0" align="center" cellpadding="1"
			cellspacing="1" bgcolor="#dddddd">
			<logic:present name="modify" scope="session">
				<logic:iterate id="dis" name="modify">

					<tr bgcolor="#FFFFFF" style="">
						<td width="123">
							<div align="right">
								购物商品:
							</div>
						</td>
						<td width="200">
							<div align="left">
								<input type="text" name="goods" maxlength="20" size="20"
									value="<bean:write name="dis" property="goods"/>">
								<font color="#FF0000">*</font>
							</div>
						</td>
					</tr>

					<tr bgcolor="#FFFFFF" style="">
						<td width="123">
							<div align="right">
								商品单价:
							</div>
						</td>
						<td width="200">
							<div align="left">
								<input type="text" name="singlePrice" size="20"
									maxlength="20"
									value="<bean:write name="dis" property="singlePrice"/>">
								<font color="#FF0000">*</font>
							</div>
						</td>
					</tr>
					<tr bgcolor="#FFFFFF">
						<td align="center" width="123">
							<div align="right">
								购物日期:
							</div>
						</td>
						<td width="200">
							<div align="left">
								<input type="text" name="orderDate" maxlength="20" size="20"
									value="<bean:write name="orderDate" />">
								<a href="#"><img
										onClick="setday(this,document.all.orderDate)"
										src="../../images/select.gif" width="16" height="16"
										border="0" align="absmiddle"> </a>
								<font color="#FF0000">*</font>
							</div>
						</td>
					</tr>
				</logic:iterate>
			</logic:present>
		</table>
		<br />
		<table width="334" border="0" align="center" cellpadding="3"
			cellspacing="0">
			<tr>
				<td width="338">
					<div align="center">
						<html:submit value="更新"></html:submit>
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
						<html:button property="goback" value="返回" onclick="history.go(-1)"></html:button>
					</div>
				</td>
			</tr>
		</table>
		<html:hidden property="id" value="<%=request.getParameter("orderid")%>"/>
	</html:form>
	
</body>
</html:html>

⌨️ 快捷键说明

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