register.jsp

来自「一个购房管理系统,JSF+Hibernate+Mssql2」· JSP 代码 · 共 48 行

JSP
48
字号
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<title>List Customer</title>	
		<script language="javascript">
			function setcolor(){
				document.getElementById("_id2:_id3").style.color = "white";
			}
</script>	
	</head>
	<body bgcolor="cc0001"
		style="margin-bottom:0px; margin-left:0px; margin-top:0px; margin-right:0px" onLoad="setcolor();">
		<f:view>
			<font color="white"> <f:loadBundle basename="resources"
					var="label" /> <h:messages errorStyle="color: red"
					infoStyle="color: green" layout="table" />
				<h1>
					<h:outputText value="#{label.space}" />
				</h1> 
				<h:form>
					<table heigth="100%">
						<tr>
							<td>
								&nbsp;
							</td>
						</tr>
						<tr>
							<td width="85" align="right">

								<div align="center">
									<h:commandLink action="#{customer.createSetup}"
										value="#{label.NewCustomer}" target="showFrame"/>
								</div>
							</td>
							<td width="85" align="left">
								<a href="../welcome.do" target="showFrame" style="color:white;" />登录</a>
							</td>
						</tr>
					</table>
				</h:form> </font>
		</f:view>
	</body>
</html>

⌨️ 快捷键说明

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