<jsp:include page="receiveMsg.jsp" flush="false"/> 试试。。我怀疑是这句出了问题。
你将这句删除看能不能RUN。<%-- Get paramaters from the request object --%>
这样的注释,建议使用:
<%//Get paramaters from the request object --%>

解决方案 »

  1.   

    我感觉是这里
    <% double accountBalance = Double.valueOf(balance).doubleValue();
    %>
    balance 最好判断一下是否为空
    空会出现异常
      

  2.   

    给你说一个方法:
    你到www.google.com中搜索
    "description The server encountered an internal error () that prevented it from fulfilling this request" 绝对可以找到答案
      

  3.   

    可能是你用request.getParameter()函数取得的值为null,所以进行类型转换的时候出异常,你可以先做一下非空的判断,然后再转换类型
      

  4.   

    <jsp:include page="receiveMsg.jsp" flush="true"/>flush =true
    这 是什么意思啊?