gpt4 book ai didi

asp.net-mvc-3 - 将输入值传递给操作 (ASP.Net MVC 3)

转载 作者:行者123 更新时间:2023-12-03 14:29:27 24 4
gpt4 key购买 nike

我在 View 中有代码:

@using (Html.BeginForm("MyAction", "MyController")
{
<input type="text" id="txt" />
<input type="image" src="/button_save.gif" alt="" />
}

如何将 txt 的值传递给我的 Controller :
[HttpPost]
public ActionResult MyAction(string text)
{
//TODO something with text and return value...
}

最佳答案

为您的输入命名并确保它与操作的参数匹配。

<input type="text" id="txt" name="txt" />

[HttpPost]
public ActionResult MyAction(string txt)

关于asp.net-mvc-3 - 将输入值传递给操作 (ASP.Net MVC 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5956897/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com