|
错误提示---------------- Parsing of JSP File '/abbs/register.jsp' failed: -------------------------------------------------------------------------------- /abbs/register.jsp(48): scriptlet close brace '}' unbalanced at line 48 which breaks scope '_base_service_scope_' probably occurred due to an error in /abbs/register.jsp line 48: response.sendRedirect("index.jsp"); ------------------ 代码: if(mode.equals("同意")) { %> <%@ include file="regShow.jsp" %> <% } if(mode.equals("不同意")) { response.sendRedirect("index.jsp"); //这是48行 //out.println("NO"); } 为什么呢?? |
|
|
|
说说.
|
|
|
:( 不明白的说
|
|
|
提示好像是说没有结束的大括号
?? |
|
|
if(mode.equals("同意"))
你包含一个文件 <%@ include file="regShow.jsp" %> /// 怀疑有问题。你改变一种方式作试试。 |
|
|
要看你的include文件里面有什么了!
<%@ include file="" %> 包含原文件 <jsp:include page=""/> 到时候去调用 你应该用下面一种吧? |
|
|
同意fengyuxi的意见,认真查看一下这两个页面,:)
|
|