NET MVC 获取文本框输入值

我有一个文本框输入和一些单选按钮:

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

一旦用户点击网页上的一个按钮,我想传递数据到我的控制器:

<input type="button" name="Add" value="@Resource.ButtonTitleAdd"  onclick="location.href='@Url.Action("Add", "Configure", new { ipValue =@[ValueOfTextBox], TypeId = 1 })'"/>

也许它是微不足道的,但我的问题是,我不知道如何获取文本框值并将其传递给控制器。如何读取文本框值并通过 ipValue=@[ValueOfTextBox]传递给控制器?

532346 次浏览

使用电子邮件文本框的简单 ASP.NET MVC 订阅表单可以这样实现:

模特

表单中的数据映射到此模型

public class SubscribeModel
{
[Required]
public string Email { get; set; }
}

观景

视图名称应与控制器方法名称匹配。

@model App.Models.SubscribeModel


@using (Html.BeginForm("Subscribe", "Home", FormMethod.Post))
{
@Html.TextBoxFor(model => model.Email)
@Html.ValidationMessageFor(model => model.Email)
<button type="submit">Subscribe</button>
}

控制员

控制器负责请求处理和返回正确的响应视图。

public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}


[HttpPost]
public ActionResult Subscribe(SubscribeModel model)
{
if (ModelState.IsValid)
{
//TODO: SubscribeUser(model.Email);
}


return View("Index", model);
}
}

这是我的项目结构。请注意,“ Home”视图文件夹与 HomeController 名称匹配。

ASP.NET MVC structure

你可以使用 jQuery:

<input type="text" name="IP" id="IP" value=""/>
@Html.ActionLink(@Resource.ButtonTitleAdd, "Add", "Configure", new { ipValue ="xxx", TypeId = "1" }, new {@class = "link"})


<script>
$(function () {
$('.link').click(function () {
var ipvalue = $("#IP").val();
this.href = this.href.replace("xxx", ipvalue);
});
});
</script>

另一种方法是使用 ajax 方法:

查看:

@Html.TextBox("txtValue", null, new { placeholder = "Input value" })
<input type="button" value="Start" id="btnStart"  />


<script>
$(function () {
$('#btnStart').unbind('click');
$('#btnStart').on('click', function () {
$.ajax({
url: "/yourControllerName/yourMethod",
type: 'POST',
contentType: "application/json; charset=utf-8",
dataType: 'json',
data: JSON.stringify({
txtValue: $("#txtValue").val()
}),
async: false
});
});
});
</script>

总监:

[HttpPost]
public EmptyResult YourMethod(string txtValue)
{
// do what you want with txtValue
...
}

试试这个。

观看内容:

@using (Html.BeginForm("Login", "Accounts", FormMethod.Post))
{
<input type="text" name="IP" id="IP" />
<input type="text" name="Name" id="Name" />


<input type="submit" value="Login" />
}

总监:

[HttpPost]
public ActionResult Login(string IP, string Name)
{
string s1=IP;//
string s2=Name;//
}

如果可以使用模型类

[HttpPost]
public ActionResult Login(ModelClassName obj)
{
string s1=obj.IP;//
string s2=obj.Name;//
}

你可以做得很简单:

首先: 例如,在模型中,使用这个实现可以得到 User.cs

public class User
{
public string username { get; set; }
public string age { get; set; }
}

我们将空模型传递给用户-当用户像这样提交表单时,这个模型将填充用户的数据

public ActionResult Add()
{
var model = new User();
return View(model);
}

当您将空用户视图作为模型返回时,它将与您实现的窗体的结构映射。我们在 HTML 方面是这样的:

@model MyApp.Models.Student
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()


<div class="form-horizontal">
<h4>Student</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.username, htmlAttributes: new {
@class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.username, new {
htmlAttributes = new { @class = "form-
control" } })
@Html.ValidationMessageFor(model => model.userame, "",
new { @class = "text-danger" })
</div>
</div>


<div class="form-group">
@Html.LabelFor(model => model.age, htmlAttributes: new { @class
= "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.age, new { htmlAttributes =
new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.age, "", new {
@class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default"
/>
</div>
</div>
</div>
}

所以在按钮提交你会这样使用它

[HttpPost]
public ActionResult Add(User user)
{
// now user.username has the value that user entered on form
}