简体   繁体   English

HTTP 错误:405(此页面不工作)当我刷新页面时(ASP.Net Core MVC)

[英]HTTP ERROR : 405(This page isn't working) When I Refresh The Page(ASP.Net Core MVC)

I am working on an ASP.Net Core MVC website where I have a page with datatable which has a button for every record which leads to further details of that record.我正在一个 ASP.Net Core MVC 网站上工作,我有一个带有数据表的页面,其中每个记录都有一个按钮,可以提供该记录的更多详细信息。 When I click that details button, it works fine but when I refresh the details page, I encounter the above mentioned error.当我单击该详细信息按钮时,它可以正常工作,但是当我刷新详细信息页面时,遇到上述错误。 There are no any debugging errors as per my knowledge.据我所知,没有任何调试错误。 Please help me out!!请帮帮我!!

Here is the code for the page with the datatable:这是带有数据表的页面的代码:

@model Derawala.Models.ViewModels.ParentForApply

@{
    Layout = "_Layout";
}
<form method="post">
   
      <div class="container p-3">

        <div class="row pt-4">
            <div class="col-6">
                <h2 class="text-success">Application List</h2>
            </div>
        </div>
        <br /><br />
        @if (Model.AppList.Any())
        {
            <table id="myTable" class="table table-hover align-middle table-bordered table table-striped" style="width:100%">
                <thead>
                    <tr>
                        <th class="text-center">
                            Applicant Name
                        </th>
                        <th class="text-center">
                            Contact No
                        </th>
                        <th class="text-center">
                            Institute Name
                        </th>
                        <th class="text-center">
                            Institute Contact
                        </th>
                        <th></th>
                    </tr>
                </thead>
                <tbody>
                    @foreach (var obj in Model.AppList)
                    {
                        <tr>
                            <td class="text-center text-primary" style="font-weight:bold;">@obj.FirstName</td>
                            <td class="text-center text-primary" style="font-weight:bold;">@obj.Contact</td>
                            <td class="text-center text-primary" style="font-weight:bold;">@obj.Institute</td>
                            <td class="text-center text-primary" style="font-weight:bold;">@obj.InstCnt</td>
                            <td class="text-center">
                                <div class="w-75 btn-group" role="group">
                                    <button type="submit" asp-action="Details" asp-route-Id="@obj.Id" class="btn btn-primary mx-2">
                                        <i class="fas fa-list"></i>
                                    </button>
                                    <a asp-action="Delete" asp-route-Id="@obj.Id" class="btn btn-danger mx-2">
                                        <i class="fas fa-trash-alt"></i>
                                    </a>
                                </div>
                            </td>
                        </tr>
                    }
                </tbody>
            </table>
        }
        else
        {
            <p>No Application Exists!</p>
        }
    </div>
</form>

This is the view of page with the datatable这是带有数据表的页面视图在此处输入图像描述 When I click on the Details button(blue button), it leads to the details page shown below: Here is the code for the Details Page:当我点击详细信息按钮(蓝色按钮)时,它会进入如下所示的详细信息页面: 这是详细信息页面的代码:

@model Derawala.Models.ViewModels.ParentForApply
@{
    ViewData["Title"] = "Details";
    Layout = "_Layout";
}
<form method="post">
    <input asp-for="@Model.Apply.PofId" hidden />
    <div class="container backgroundWhite pt-4">
        <div class="card" style="border:1px solid #000000; ">
            @*<div class="card-header bg-dark text-light ml-0 row container" style="border-radius: 0px;">*@
            <div class="card-header" style="background-color:black;">
                <div class="row">
                    <div class="col-12 col-md-6 align-self-start">
                        <h1 class="text-white">@Model.Apply.FirstName&nbsp;@Model.Apply.LastName</h1>
                    </div>
                    <div class="col-12 col-md-6 align-self-end">
                        <h1 class="text-warning">Application Id :@Model.Apply.AppId</h1>
                    </div>
                </div>
            </div>
            <div class="card-body">
                <div class="container rounded p-2">
                    <div class="row">
                        <div class="col-12 col-lg-4 p-1 text-center">
                            <img src="@WC.ImagePath[0]@Model.Apply.Photo" class="rounded w-25" />
                        </div>
                        <div class="col-12 col-lg-8">
                            <div class="row pl-3">

                                <div class="col-12">
                                    <span class="badge p-3 border" style="background-color:lightpink">@Model.Apply.Qualification</span>
                                    <span class="badge p-3 border" style="background-color:lightskyblue">@Model.Apply.BankName</span>
                                    <h3 class="text-success"></h3>

                                    <p class="text-secondary">@Model.Apply.Description</p>
                                </div>

                            </div>
                            <div class="row pl-3">
                                <div class="col-12">
                                    Download Id Proof : <button type="submit" class="btn-primary" asp-route-id="@Model.Apply.PofId" asp-action="DownloadFile">Download</button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="card-footer bg-dark">
                <div class="row">
                   
                    <div class="col-12 col-md-6 ">
                        
                    <a asp-action="RemoveFromCart" class="btn btn-primary btn-square form-control btn-lg" style="height:50px;">Donate Now <i class="fas fa-hand-holding-medical"></i></a> 
                    </div>
                    <div class="col-12 col-md-6">

                    <button type="submit" asp-action="" class="btn btn-danger form-control btn-lg" style="height:50px;">Delete This Application <i class="fas fa-trash-alt"></i></button>
                    </div>
                </div>
            </div>
        </div>
    </div>
</form>

This is the view of details page:这是详细信息页面的视图: 在此处输入图像描述 and when I refresh this details page it gives me this HTTP 405 error:当我刷新此详细信息页面时,它给了我这个 HTTP 405 错误: 在此处输入图像描述

Your Details action probably has [HttpPost] attribute and you call it using your submit button.您的 Details 操作可能具有 [HttpPost] 属性,您可以使用提交按钮调用它。 But when you are trying to refresh the browser calls Get method.但是当您尝试刷新浏览器时,会调用 Get 方法。 So you have to remove [HttpPost] from the details action, or create another one with [HttpGet].因此,您必须从详细信息操作中删除 [HttpPost],或者使用 [HttpGet] 创建另一个。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 HTTP 错误 405 | [HttpPost] ASP.NET MVC 核心 3.1 - HTTP ERROR 405 | [HttpPost] ASP.NET MVC Core 3.1 ASP.NET 核心 MVC RedirectToAction 不工作 - ASP.NET Core MVC RedirectToAction isn't working Http错误的自定义错误页面404.13 ASP.NET Core MVC - Custom error page for Http error 404.13 ASP.NET Core MVC ASP.NET 内核 HTTP 错误 405 - 路由到 controller 操作后的错误方法 - ASP.NET Core HTTP Error 405 - Bad Method when routing to post controller action ASP.NET Core MVC:找不到这个本地主机页面 - ASP.NET Core MVC : this localhost page can’t be found ASP.Net Core“找不到此本地主机页面”HTTP 错误 404 - ASP.Net Core "This localhost page can’t be found" HTTP ERROR 404 带有 ASP.NET 内核 (MVC) 的登录页面 - Login Page with ASP.NET Core (MVC) 尝试转到其他页面时出现未找到本地主机错误 - ASP.NET CORE MVC - Localhost not found error appears when trying to go to a different page - ASP.NET CORE MVC ASP.NET MVC Web应用程序-当我单击“提交”时,我的查询页面没有发送到数据库,我看不到为什么 - ASP.NET MVC Web Application - My enquiry page isn't sending to my DB when I hit submit, I can't see why 如何使用 Ajax 在 Asp.net 核心 MVC 中刷新数据而不重新加载页面? - How to refresh data without page reloading in Asp.net core MVC using Ajax?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM