如何使用GET方法防止在MVC表单中查询使用null值的输入

时间:2016-11-21 13:42:12

标签: asp.net asp.net-mvc

我在视图中有一个FormMethod.Get表单:

@using (Html.BeginForm("Search", "Pages", new { filter = "Properties" }, FormMethod.Get))

提交时此表单将所有输入作为查询字符串发送,即使输入具有空值,如:

http://localhost:1156/Pages/Search?q=anything&id=&t=

我想阻止发送带有空值的输入,所以url是这样的:

http://localhost:1156/Pages/Search?q=anything

0 个答案:

没有答案