データベースからのデータが入力されたドロップダウンボックスがあります。ドロップダウンでアイテムを選択した場合、コントローラの GetValueSelected() というメソッドで値を使用したいと考えています。現時点では、GetValueSelected メソッドでその値を取得できません。その値を取得して他の処理に使用できるようにするにはどうすればよいでしょうか。
@model PopulateDropDownList.Models.Populate
@using PopulateDropDownList.Models
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<script src="../../Scripts/jquery-1.4.4.js" type="text/javascript"></script>
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new {rnctype = "multipart/form-data" }))
{
<p>
@Html.DropDownList("mylist", Helper.GetDescription(),"--select here--")
<input id="Button1" type="button" value="button" />
</p>
}
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$("#Button1").click(function () {
var SelCat = $("#mylist").val();
if (SelCat != 0) {
var url = '@Url.Action("GetValueSelected", "Home")';
$.post(url, { Id: SelCat },
function (data) {
});
}
else {
alert("You need to select an item");
}
});
});
</script>
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public void GetValueSelected()
{
string getSelectedValue = Request.Form["mylist"];
}
}