我是 mvc 新手,我想知道如何将文本框文本分配给 mvc 中的另一个变量。
在 Windows 中,我们可以使用 textbox1.text = var body;
如何使用以下代码执行类似操作
我想在 textboxfor 中写入文本,以便它调用 PAF 控制器索引操作的字符串邮政编码参数?
@Html.TextBoxFor(model => model.PostCode)
**Here we will get : postcode: ------------(Assume Postcode:52345)**
<input type="button" name="postcode" value="check your address" onclick="location.href='@Url.Action("Index", "PAF", new {Postcode = ...... )})'" />
**Here we will get : check your address button**
这是我的 PAF 控制器索引操作
public class PAFController : Controller
{
public ActionResult Index(string Postcode)
{
return View();
}
}