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

📄 fundupdateinfo.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:javascript formName="fundForm"/>
<html:form action="editFund" onsubmit="return validateFundForm(this);">
  <html:hidden property="fundDto.fundNo"/>
  <html:hidden property="fundDto.createdDate"/>
	<table border="0" width="100%">
		<tr>
			<td class="thd" colspan="2" align="center"><bean:message key="fundForm.update.title"/></td>
		</tr>
		<tr>
			<td class="tdata" colspan="2" align="center">&nbsp;</td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="fundForm.fundName"/><font color="red">*</font></td>
			<td class="tdata" width="50%"><html:text styleClass="inputstyle"  property="fundDto.fundName" /></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="fundForm.price"/><font color="red">*</font></td>
			<td class="tdata" width="50%"><html:text styleClass="inputstyle"  property="fundDto.price" /></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="fundForm.description"/><font color="red">*</font></td>
			<td class="tdata" width="50%"><html:text styleClass="inputstyle"  property="fundDto.description" /></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="fundForm.status"/></td>
			<td class="tdata" width="50%">
                          <html:select property="fundDto.status" styleClass="inputstyle">
                          	<logic:equal  property="fundDto.status" value="正常" name="fundForm">
	                            <html:option value="正常">正常</html:option>
	                            <html:option value="上市">上市</html:option>
    	                        <html:option value="无效">无效</html:option>
	                       	</logic:equal>
                          	<logic:equal  property="fundDto.status" value="上市" name="fundForm">
	                            <html:option value="上市">上市</html:option>
    	                        <html:option value="无效">无效</html:option>
	                       	</logic:equal>
                          	<logic:equal  property="fundDto.status" value="无效" name="fundForm">
    	                        <html:option value="无效">无效</html:option>
	                       	</logic:equal>
                          </html:select>
                        </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.cancel"/>' onclick="javascript:document.location='viewFund.do?uFundNo=<bean:write name="fundForm" property="fundDto.fundNo"/>'">
			</td>
		</tr>
	</table>
        <html:errors/>
</html:form>

⌨️ 快捷键说明

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