f052681f206a001b10afbf1a56d9437c
来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· 代码 · 共 98 行
TXT
98 行
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<html:html>
<head><title>Regis.jsp</title>
</head>
<body>
<%@ include file="/sample/Top.jsp"%>
<logic:messagesPresent>
<bean:message key="errors.header"/>
<ul>
<html:messages id="error">
<li><bean:write name="error"/></li>
</html:messages>
</ul><hr />
</logic:messagesPresent>
<h2>Register</h2>
<html:form action="regis-submit">
<table >
<tr>
<th align="left">
<bean:message key="registrationForm.name.displayname"/>
</th>
<td align="left">
<html:text name="regisForm" property="name" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<th align="left">
<bean:message key="registrationForm.loginName.displayname"/>
</th>
<td align="left">
<html:text name="regisForm" property="loginName" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<th align="left">
<bean:message key="registrationForm.password.displayname"/>
</th>
<td align="left">
<html:text name="regisForm" property="password" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<th align="left" nwrap>
<bean:message key="registrationForm.phone.displayname"/>
<bean:message key="registrationForm.phone.format"/>
</th>
<td align="left">
<html:text name="regisForm" property="phone" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<th align="left" nwrap>
<bean:message key="registrationForm.email.displayname"/>
<bean:message key="registrationForm.email.format"/>
</th>
<td align="left">
<html:text name="regisForm" property="email" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<th align="left">
<bean:message key="registrationForm.registrationFee.displayname"/>
</th>
<td align="left">
<html:text name="regisForm" property="registrationFee" size="30" maxlength="30"/>
</td>
</tr>
<tr>
<td>
<html:submit property="submit">
<bean:message key="button.save"/>
</html:submit>
<html:reset>
<bean:message key="button.reset"/>
</html:reset>
<html:cancel>
<bean:message key="button.cancel"/>
</html:cancel>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?