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

📄 clientview.jsp

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JSP
字号:
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<html:form action="clientDetailView.do">
	<table border="0" width="100%">
        <input type="hidden" name="clientNo" value="<bean:write name="clientForm" property="clientDto.clientNo"/>"/>
		<tr>
			<td class="thd" colspan="2" align="center"><bean:message key="clientForm.view.title"/></td>
		</tr>
		<tr>
			<td class="tdata" colspan="2" align="center">&nbsp;</td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientForm.clientNo"/></td>
			<td class="tdata" width="50%">
                          <html:link action="clientDetailView.do" paramId="clientNo" paramName="clientForm" paramProperty="clientDto.clientNo">
                            <bean:write name="clientForm" property="clientDto.clientNo"/>
                          </html:link>
                        </td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientForm.name"/></td>
			<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.clientName"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientForm.usableFinancing"/></td>
			<td class="tdata" width="50%"><bean:write name="clientForm" property="financialAccountDto.financingAmount"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientForm.asset"/></td>
			<td class="tdata" width="50%"><bean:write name="clientForm" property="asset"/></td>
		</tr>
		<tr>
			<td class="tdata" colspan="2" align="center">&nbsp;</td>
		</tr>
		<tr>
			<td colspan="2" align="center">
				<input type="button" class="btnaction" onclick="document.location='clientUpdateForward.do?clientNo=<bean:write name="clientForm" property="clientDto.clientNo"/>'" value='<bean:message key="button.update"/>'>
				<html:submit styleClass="btnaction" ><bean:message key="button.detailview"/></html:submit>
				<input type="button" class="btnaction" onclick="document.location='clientSearchForward.do'" value='<bean:message key="button.newsearch"/>'>
			</td>
		</tr>
	</table>
	<input type="hidden" name="clientNo" value='<bean:write name="clientForm" property="clientDto.clientNo"/>'/>
</html:form>
<html:errors/>


⌨️ 快捷键说明

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