Passing Empty string parameter in URL

asp.net, url, vb.net

Solution

The url would look like this:

text.aspx?race=

or

text.aspx?race=&otherParam=value&etc=otherValue

Then you would have code to handle race being empty:

if(string.IsNullOrEmpty(Request.QueryString["race"]))
// handle the empty race differently

Problem

I want to pass an empty string parameter in a url. I don't know how to do it. I am passing these parameters in the url for a grid. In the database if I using Race=''. I get the respective records. I need to pass this in the url ``` test.aspx?race="" ```

Original source