JSP的一个书例,能在火狐显示,但IE不行,要如果才能在IE运行?

来源:百度知道 编辑:UC知道 时间:2024/07/01 06:22:30
代码:
div.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312" />
<title>整数除法运算</title>
</head>
<body>
<div align="center">
<p>整数除法运算<p>
<form name="form1" method="post" action="showresult.jsp">
<p>被除数
<input name="num1" type="text" id="num1">
除数
<input name="num2" type="text" id="num2">
</p>
<p>
<input type="submit" name="Submit" value="提交">
</p>
</form>
</div>
</body>
</html>

showerror.jsp:
<%@ page contentType="text/html;charset=g

web.xml:

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app>
<error-page>
<error-code>500</error-code>
<location>/showerror.jsp</location>
</error-page>
</web-app>

div.html:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312" />
<title>整数除法运算</title>
</head>
<body>
<div align="center">
<p>整数除法运算<p>
<form name="form1" method="post" action="showresult.jsp">
<p>被除数
<input name="num1" type="text" id="num1">
除数
<input name="num2" type="text" id="num2">
</p>