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

📄 pricelistupdate.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>priceListUpdate.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>
  
  <body>
	<html:form action="/priceListUpdate.do">
		<table>
		<tr>
			<td>清单编号<br></td>
			<td><html:text property="priceId"/><br></td>
			</tr>
			<tr>
			<td>客户编码<br></td>
			<td><html:text property="cusCode"/><br></td>
			</tr>
			<tr>
			<td>货物名称<br></td>
			<td><html:select property="wareCode">
				<html:options collection="warelist" labelProperty="wareName" property="wareCode"/>
			</html:select></td>
			</tr>
			<tr>
			<td>单价<br></td>
			<td><html:text property="capitalUnitPrice"></html:text><br></td>
			<tr>
			<td>数量<br></td>
			<td><html:text property="quantity"/></td>
			<tr>
			<td>含税单价<br></td>
			<td><html:text property="capitalTaxUnitPrice"/></td>
			<tr>
			<td>更新日期<br></td>
			<td><html:text property="priceDate"></html:text></td>
			</tr>
			<tr>
			<td colspan="2"><html:submit value="修改"/></td>
			</tr>
		</table>
	</html:form>
  </body>
</html:html>

⌨️ 快捷键说明

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