Struts传值问题
以下是ACTION中代码(省略部分代码)
public ActionForward lxjs(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
String xhlx=gzzqk.getXhlx()+"";//能取得xhlx值为0.0
gzzqkForm.setXhlx(xhlx);
return mapping.findForward("lxjs");
}
以下为跳转页面代码(lxjs.jsp)
<%@ include file="/common/taglibs.jsp"%>
<script language="javascript">
var theForm = parent.TopFrame.gzzqkForm;
<c:choose>
<c:when test="${!empty prompt}">
alert("<%=com.jtpsoft.jsp.util.StringFormat.getAlertString((String)request.getAttribute("prompt"))%>");
</c:when>
<c:otherwise>
parent.TopFrame.setD010("<c:out value="${gzzqkForm.xhlx}"/>");
theForm.confirmsave.disabled = false;//设置提交按钮为不可用
</c:otherwise>
</c:choose>
theForm.lxjs.disabled = false; //设置结算按钮不可用
</script>
我现在需要在上面的页面中给Top.jsp的一个文本框(d010)付值请问该怎么写?
(是Top.jsp中的利息结算按钮请求的上面的ACTION)