Is it possible to add "empty" query string parameters with ASP.NET MVC? I need to somehow generate the following url using Html.ActionLink
:
/Home/Index?foo
However this Html.ActionLink("Index", "Index", new {foo = ""})
will output
/Home/Index
Is this possible at all?