0
@using (Html.BeginForm("Index", "Bill"))
{
@Html.Label("FromDate")
@Html.DropDownList("FromDate",Model.DateList)
@Html.Label("ToDate")
@Html.DropDownList("ToDate", Model.DateList)
@Html.ActionLink("Filter", "Index", "Bill") // I want to post to Index
}
[HttpPost]
public ActionResult Index(string fromDate, string toDate)
{
//Process
}
インデックスアクションに日付範囲を投稿する正しい方法は何ですか?ASP.NET MVC:ドロップダウンボックスの値をアクションに投稿するには?
指定する必要があるのはどのような種類のURLですか?
ご回答いただきありがとうございます。