fundviewinfo.jsp
来自「EJB+Struts+Webservice实现的开放式基金管理系统」· JSP 代码 · 共 41 行
JSP
41 行
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<html:form action="editFundForward" >
<table border="0" width="100%">
<tr>
<td class="thd" colspan="2" align="center"> <bean:message key="fundForm.view.title"/></td>
</tr>
<tr>
<td class="tdata" colspan="2" align="center"> </td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="fundForm.fundNo"/></td>
<td class="tdata" width="50%"><bean:write name="fundForm" property="fundDto.fundNo"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="fundForm.fundName"/></td>
<td class="tdata" width="50%"><bean:write name="fundForm" property="fundDto.fundName"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="fundForm.price"/></td>
<td class="tdata" width="50%"><bean:write name="fundForm" property="fundDto.price"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="fundForm.description"/></td>
<td class="tdata" width="50%"><bean:write name="fundForm" property="fundDto.description"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="fundForm.status"/></td>
<td class="tdata" width="50%"><bean:write name="fundForm" property="fundDto.status"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<html:submit styleClass="btnaction" ><bean:message key="button.update"/></html:submit>
<input type="button" class="btnaction" value='<bean:message key="button.newsearch"/>' onclick="javascript:document.location='searchFundForward.do'">
</td>
</tr>
</table>
<input type="hidden" name="fundNo" value='<bean:write property="fundDto.fundNo" name="fundForm"/>' >
</html:form>
<html:errors/>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?