提交表单时,不要在查询字符串中包含空参数

时间:2019-06-18 10:30:32

标签: asp.net-mvc query-string http-get

我有这样的表格:

@using (Html.BeginForm("action", "controller", FormMethod.Get))
{
    <input type="text" value="" name="param1" id="param1"/>
    <input type="number" value="" name="param2" id="param2"/>
    <input type="submit" value="submit">
}

提交此表单时,URL中显示以下内容:

   host/controller/action?param1=&param2=

是否可以将表单提交配置为QueryString中不包含空值?

0 个答案:

没有答案