我想使用 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>
应该接收此数据的 Controller 函数标头如下所示:
public ActionResult Send(string walletAddress, BitcoinTransactionViewModel transaction)
请帮忙 :)