JSP错误404 editplus默认浏览器可以打开 但IE不能打开且查看源代码为空白

代码:

 <html>
<head>
    <title>欢迎注册慕课网</title>
</head>

<body>
<form action="http://www.imooc.com/" method="post">
    用户名:<input type="text" name="username">
    密码:<input type="password" name="password">
    姓名:<input type="text" name="realname">
    性别:<input type="radio" name="sex" value="male">男
    <input type="radio" name="sex" checked value="female">女
    省份:<select name="province" size=2>
        <option selected value="zhe">浙江
        <option value="an">安徽
        <option value="jiang">江苏
        <option value="hei">黑龙江
        <option value="bei">北京
        </select>
    电话:<input type="text" name="tele">
    联系地址:<input type="textarea" name="add" cols=50 rows=4 hard>
    <input type=onreset value="重置">
    <input type=onsubmit value="提交">

</form>
</body>
</html>