我没有打电话的页面上有404错误

时间:2015-01-28 16:53:25

标签: html apache redirect http-status-code-404

当我在html页面上按提交时出现此错误。它有一个文本框,我输入一个id。我希望它将我重定向到名为Output的jsp页面。相反,它说没有找到Success.html

HTTP Status 404 - /Success.html
type Status report    
message /Success.html
description The requested resource is not available.

我的HTML页面有

     <!DOCTYPE html>
<html>
<head>
<style>
table {
    width: 100%;
}
</style>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
    href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script
    src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
    src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
    <form action="Output" method="get">
        <div class="container">
            <div class="jumbotron" align="center">
                <h1>Lab Test 1 : Student Information System</h1>
                <table>
                    <tr>
                        <td><h2>Student Name: Divya Rao &nbsp; &nbsp; &nbsp;
                                &nbsp; &nbsp; &nbsp;</h2></td>
                        <td>
                            <h2>Roll No: MT2014032</h2>
                        </td>

                    </tr>
                </table>
            </div>
            <h1>Output Screen</h1>
            <table>
                <tr>
                    <td><h4>Student Id</h4></td>
                    <td><h4>Marks</h4></td>
                    <td><h4>Picture</h4></td>
                </tr>
                <tr>
                    <td><input type="text" name="id"></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                </tr>
                <tr>
                    <td><input type="button" class="btn btn-success"        
                    ></td>
                </tr>
            </table>

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

我在整个工作区搜索“成功”,但我似乎没有在任何地方调用它。怎么了?

1 个答案:

答案 0 :(得分:0)

我试着整晚修复这个错误。我没有重定向的页面,也没有引用它。所以很累。 系统重启修复了它。