Html.EditorFor から myController の myAction にデータを渡すにはどうすればよいですか?
これは私の編集者です:
<div class="editor-label">
@Html.LabelFor(model => model.Quote_Currency)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Quote_Currency, new { })
@Html.ValidationMessageFor(model => model.Quote_Currency)
</div>
これは私のコントローラーアクションです:
public ActionResult SaveQuote(FxQuote quote, string Quote_Currency)
{
objQuote.Quote_Currency = Quote_Currency;
dcfx.FxQuotes.InsertOnSubmit(quote);
dcfx.SubmitChanges();
return View();
ここで、エディタと同じ名前のパラメータを使用しようとしましたが、うまくいきませんでした。助けてください。