如何在MVC中连接两个文本框,因此当您单击“提交”时,它将从两个文本框中发送值。
例如
<form method="get" action="@Url.Action("Index")">
@(Html.TextBox("q", Model.Search.FreeSearch))
??? //i need here another textbox
<input type="submit" value="Search"/> //when I click submit it will send values from both textboxess
</form>
感谢您的任何想法...
答案 0 :(得分:1)
如果在模型中添加另一个字段(文本框),然后从模型中传递此字段, 并创建强类型视图,然后您可以设置两个文本框(字段)并发送两个值
并且在控制器中您可以连接两个字段值。
e.g。 model.firstname + model.lastname
希望这个想法可以帮助你。