URL.Action includes id when constructing URL

前端 未结 3 709
眼角桃花
眼角桃花 2020-12-15 04:40

I\'m using ASP.Net MVC. Here\'s my code snippets from a controller named Course:

public ActionResult List(int id)
{
    var viewmodel.ShowUrl = Url.Action(\         


        
3条回答
  •  伪装坚强ぢ
    2020-12-15 05:20

    I know this is old, but I found this first, but didn't like any of these solutions, so I kept looking and found https://stackoverflow.com/a/19110921/1130636.

    You can use UrlParameter.Optional to solve this problem

    Url.Action("Show", "Course", new { id = UrlParameter.Optional })

提交回复
热议问题