0
當我用下面的ActionLink的:?Html.ActionLink MVC3 ASPX/V =
<%: 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
我怎樣才能改變這樣的網址將
http://localhost:11111/CourseCases?courseId=9
它的工作原理,當我使用:
return RedirectToAction("Index", "CourseCases", new { courseId = id });
在控制器中。 非常感謝。
非常感謝。 – hncl