<%
}else if (......){
%>
这样编译没错<%
}
%>
<%
else if (......){
%>
这样编译错误,提示else前没有}因为要插入注释:
<%
}
%>
<%-- comment --%>
<%
else if (......){
%>
怎么解决?