首页 > 代码库 > inddy--jsp页面的相关传值方案

inddy--jsp页面的相关传值方案

1. 在cancel的form里

使用  encodeAsFormParameters()方法

<form:form source="<%="/" + pageName %>" name="" action="">
	<%=VisaManager.encodeAsFormParameters(brkAccount, ManageBrokerageImport.BROKER_VISA_NAME) %>
	<form:cancel value=http://www.mamicode.com/‘<%=bundle.getComponentString(basePageName+".Button.Cancel",SecurityUtils.ENCODING_OPTION_HTML_ENCODING)%>‘ />
    <indy:indyHelp value=http://www.mamicode.com/‘<%=bundle.getComponentString(basePageName+".Button.Help",SecurityUtils.ENCODING_OPTION_HTML_ENCODING)%>‘ url=‘<%=bundle.getComponentString(basePageName+".Url.Help",SecurityUtils.ENCODING_OPTION_HTML_ENCODING).trim()%>‘ />
</form:form>

 然后在随后得页面使用 decodeBusinessObject()方法

brokerage = (Issuer)VisaManager.decodeBusinessObject(request, ManageBrokerageImport.BROKER_VISA_NAME);

 

2. search and resulttable example ----> manage-brokerage-accounts.jsp

inddy--jsp页面的相关传值方案