Html.EditorForのデータをmyControllerのmyActionに渡すにはどうすればよいですか?Html.EditorForからコントローラにデータを渡す
これは私の編集者である:
<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();
、私は私のエディタと同じ名前のパラメータを持ってしようとしていたが、それは動作しませんでした。 助けてください。
に役立ちますが、それは '
モデルはどのタイプですか? – Xharze
エディタは、フォーム(Html.BeginForm)にあります.LINQを使用しています。 – Bree