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

📄 90a7514326a8001b1a90e534432fd09e

📁 用jsf实现cd商店的程序
💻
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<link href="CSS/styleClass.css" rel="stylesheet" type="text/css" />
		<title>添加CD</title>
	</head>

	<body>
		<jsp:include flush="true" page="head.html"></jsp:include>
		<h3>
			输入 CD 的详细信息
		</h3>
		<br />
		<f:view>
			<h:form>
				<h:panelGrid columns="2" rowClasses="">
					<h:outputText value="专辑名称" />
					<h:inputText value="#{cdBean.newCd.specialTitle}"></h:inputText>
					<h:outputText value="艺术家" />
					<h:inputText value="#{cdBean.newCd.artist}"></h:inputText>
					<h:outputText value="价格" />
					<h:inputText value="#{cdBean.newCd.price}"></h:inputText>
					
				</h:panelGrid>
				<h:commandButton action="cdBean.addAction"></h:commandButton>
			</h:form>
		</f:view>
	</body>
</html>

⌨️ 快捷键说明

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