0
ビュー内からドロップダウンリストコントロールからselectedValue
を取得するには(モデルに値を保存しないで)どうすればよいですか?ドロップダウンリストからselectedValueを取得MVC
「かみそり」セクションではこれを行う方法はありますか?
MyCode:
<script type="text/javascript">
function dada(aa) {
return document.getElementById(aa).value;
}
</script>
@using (Html.BeginForm("MonetaryTransactions", "Trading"))
{
IEnumerable<Mt4Transaction> results = from result in Model
select result;
// This is the dropDown control which I need to get the selectedValue from ...
@Html.DropDownList("TransactionType",
new SelectList(Enum.GetValues(typeof(Forex.Reports.ReportValueType))),
"Transaction Type",
new { @class = "form-control", @id = "aa" });
switch ("???")
{
case "Withdrawal":
{
results =
from result in Model
where result.Profit > 0
select result;
}
break;
case "Deposit":
{
results =
from result in Model
where result.Profit < 0
select result;
}
break;
case "UnidentifiedProfit":
{
results =
from result in Model
select result;
}
break;
}
可能な重複ホープ([クライアント側とサーバー側のプログラミングの違いは何ですか?] http://stackoverflow.com/questions/13840429/what-is-the-difference-between-client-side-and-server-side-programming) –