我正在用 asp.net core 2.0 编写一个应用程序。
我有一些从视图发送到控制器的数据,但我也有我想传递给同一个控制器的数据,但它们不在表单中。
可以将此数据传递给同一个控制器,而我不必创建新的输入。
如何从表单外部或表单中将数据传递给控制器,但不创建新输入。
我有两个变量 @Model.MinUppercase ,@Model.MinLowercase 但我没有在表单中使用它们,如何将它们与表单中的变量一起传递给控制器?
@model Project2.Models.UserModel
<h1>Step2: Register</h1>
<div>
@if (@ViewData["Message"] != null)
{
<div class="alert alert-danger space text-center">
@ViewData["Message"]
</div>
}
@Model.MinUppercase
@Model.MinLowercase
<center>
<h2>Register form:</h2>
</center>
<div>
<form asp-action="Middle" asp-controller="Home" method="POST" class="form-wrapper">
<div class="input-group">
<label>Login:</label>
<input id="Login" asp-for="Login" type="text" class="input" size="35">
</div>
<div class="input-group">
<label>Password:</label>
<input id="Password" asp-for="Password" type="Password" class="input" size="35">
</div>
<div class="input-group">
<label>Your Regex Description:</label>
<input id="Description" asp-for="Description" type="text" class="input" size="35" value=@Model.Description>
</div>
<div class="input-group">
<label>Your Regex:</label>
<input id="Reg" asp-for="Reg" type="text" class="input" size="35" value=@Model.Reg>
</div>
<div class="input-group">
<a asp-controller="Home" asp-action="CreateRegex">
<button type="button" class="btn btn-danger">Back</button>
</a>
<button class="btn btn-success">Create</button>
</div>
</form>
</div>
MMTTMM
有只小跳蛙
相关分类