0

ActionLink を使用して現在のフォームのデータをモデル全体に​​渡したいのですが、うまくいかないようです。

これが私の見解です:

@model BitcoinRedeemPage.Controllers.BitcoinTransactionViewModel


<form action="/DepositDetails/Send" method="post">
    <input id="walletAddress" type="text" name="walletAddress" />

    @Html.ActionLink("Send", "DepositDetails", "Send", new { /* Here i want to send the current @Model and the walletAddress form field value */ } , null)
</form>

このデータを受け取るはずのコントローラー関数ヘッダーは次のようになります。

public ActionResult Send(string walletAddress, BitcoinTransactionViewModel transaction)

助けてください :)

4

1 に答える 1