次のアクションリンクを使用する場合:
<%: Html.ActionLink("Study Cases", "Index", "CourseCases", new { id = Model.ID }, new { @class = "t-button", @style = "width:240px; color:white; text-align:center" })%>
ブラウザのURLアドレスは次のとおりです。
http://localhost:11111/CourseCases/Index/9
URLが次のようになるように変更するにはどうすればよいですか?
http://localhost:11111/CourseCases?courseId=9
私が使用すると動作します:
return RedirectToAction("Index", "CourseCases", new { courseId = id });
コントローラーで。よろしくお願いします。