[我正在尝试此JSP程序,但出现HTML 500错误(找不到页面)[重复]

问题描述 投票:-1回答:1
这是我的程序文件。当我用20除以5时,我得到的答案是4。正确!但是,当我将20除以0时,我不会获得宽高比输出。相反,我得到页面无法显示错误HTML 500内部服务器错误。

使用NetBeans 8.2和Internet Explorer。index.html

<form action="process.jsp"> No1:<input type="text" name="n1" /><br/><br/> No2:<input type="text" name="n2" /><br/><br/> <input type="submit" value="divide"/></form>

process.jsp

<%@page errorPage="error.jsp" %> <% String num1=request.getParameter("n1"); String num2=request.getParameter("n2"); int a=Integer.parseInt(num1); int b=Integer.parseInt(num2); int c=a/b; out.print("division of numbers is: "+c); %>

error.jsp

<%@page isErrorPage="true" %> <html> <body> An unexpected exception was encountered. The admin monkeys are looking into the issue. <br><br> Exception is : <%= exception %> </body> </html>

html xml jsp jstl
1个回答
0
投票
问题出在使用chrome的Internet Explorer上。”>
© www.soinside.com 2019 - 2024. All rights reserved.