我有一個剃刀形式如何讓剃刀形式使用路線
using (Html.BeginForm("TermList", "Course", FormMethod.Get))
{
<div style="text-align:right;display:inline-block; width:48%; margin-right:25px;">
@Html.DropDownList("id", (SelectList) ViewBag.schoolId)
</div>
<input type="submit" value="Choose school" />
}
我希望這種形式張貼到的URI:
http://localhost:56939/Course/TermList/764
替代路線是這樣的:
http://localhost:56939/Course/TermList?id=764
該路線未被使用。我想用參數
?id=764
我剛剛用一個簡單的重定向解決了這個問題http://stackoverflow.com/a/18105353/360211 – weston