<%@ include file="/inc/page_begin.inc" %>
<%@ page import="jfa.lib.app.web.FWebContext" %>里的jfa是什么命令啊?
<%@ page import="jfa.lib.app.web.IWebGlobals" %>
<%@ page import="jfa.console.com.form.MessageForm" %>
<%@ page import="jfa.lib.app.console.FMessageConsole" %>
<%@ page import="jfa.lib.app.msg.FValidatorMessage" %>
<%@ page import="jfa.lib.app.web.util.FWebHTML" %>
<%@ page import="jfa.lib.com.lang.FString" %>
<%@ page import="jfa.lib.com.container.FList" %>
<HTML><!-- Html Header Initialize ------------------------------->
<HEAD>
<js:meta/>
<js:css/>
<js:js/>
<jh:title caption='txt|sys|Message.Validator.WinTitle'/></HEAD>还有这里的jh是什么?<jh:default action='window.close();'/><!-- Body Initialize -------------------------------------->
<jh:body styleClass='frmValidator' scroll='no'><FORM name='__frmError'>
<TABLE border='0' cellspacing='0' cellpadding='0' width='300' height='0'>
<TR>
<TD width='20' valign='top'><TABLE width='20' border='0' cellspacing='0'><TR><TD>&nbsp;</TD></TR></TABLE></TD>
<TD align='center' valign='top'>
<TABLE border='0' cellspacing='0' cellpadding='0' width='100%'>
<TR><TD height='15'>&nbsp;</TD></TR></TABLE>
<TABLE border='0' cellspacing='0' cellpadding='0' width='100%'>
<%
String sDump = "";
 FWebContext oContext = (FWebContext)request.getAttribute(IWebGlobals.INSTANCE_WEB_CONTEXT);
if(oContext != null){
    MessageForm oMessageForm = (MessageForm) oContext.getForm(MessageForm.class);
   FList oValidatorList = oMessageForm.getValidateMessage();
   if(oValidatorList != null){
      FValidatorMessage oValidatorMessage = null;
      int nCount = oValidatorList.getCount();
      for(int m = 0; m < nCount; m++){
         oValidatorMessage = (FValidatorMessage)oValidatorList.getItem(m);
         out.print("<tr><td nowrap>&nbsp;&nbsp;");
         if(!FString.isEmpty(oValidatorMessage.getMessage())){
            String[] arMsgLine = FString.split(oValidatorMessage.getDescription(), 50);
            int nMsgLineCount = arMsgLine.length;
            for(int n = 0; n < nMsgLineCount; n++){
               out.print(FWebHTML.toHtml(arMsgLine[n]) + "<BR>");
            }
         }
         out.print("</td></tr>");
      }
   }
   oMessageForm.resetValidateMessage();
   oMessageForm.commit();
}
%>
</TABLE>
<TABLE border='0' cellspacing='0' cellpadding='0' width='100%'>
<TR align='center'>
<TD height='20'>
<HR style='height:1;color:#999999;'>
<A id='btnClose' onclick='window.close();' style='cursor:hand'><jh:img src='/res/img/sys/delete.gif' align='absmiddle'/> <jh:write item='txt|sys|button.close'/></A>
</TD>
</TR>
<TR><TD height='15'>&nbsp;</TD></TR>
</TABLE>
</TD>
<TD width='20'><TABLE width='20' border='0' cellspacing='0'><TR><TD>&nbsp;</TD></TR></TABLE></TD>
</TR>
</TABLE></jh:body>
</HTML>
<%@ include file="/inc/page_end.inc" %>

解决方案 »

  1.   

    jfa.lib.app.web.FWebContext 中FWebContext 是自己定义的一个类,而前面jfa.lib.app.web是你自己定义的一个类得包名,也就是你的这个类放在这个目录下,按照目录去找就能找到的;<jh:title caption='txt|sys|Message.Validator.WinTitle'/></HEAD>这里的jh是自定义的一个标签名,你自己去找找你的工程,应该是会找到的
      

  2.   

    <%@ page import="jfa.lib.app.web.FWebContext" %>里的jfa是你工程中一个文件名,
    <jh:title caption='txt|sys|Message.Validator.WinTitle'/></HEAD>jh是标签名,在FWebContext.jtl中可以找得到
      

  3.   


    顶 我也觉得是这样的   jfa.lib.app.web是你自己定义的一个类得包名