Search code examples
asp.net-corerazorbootstrap-4routestag-helpers

why asp-route-ID not working in this code?


 <a asp-page="\Products\Details" asp-route-ID="@products.Product_ID"                   
               class="btn btn-primary m-1">View</a>

route ID not working here in this code .Please suggest. This also doesn't working for asp-route- tag

View


Solution

  • Try this code:

     <a asp-page="../Products/Details" asp-route-ID="@products.Product_ID"                   
               class="btn btn-primary m-1">View</a>
    

    In your /Products/Details get action:

    public IActionResult OnGet(int ID)
        {
            return Page();
        }