I have a search form which has some default text Type your search phrase here which currently gets sent as a querystring parameter - the generated URL looks like so:
/search?KeyWords=Type+your+search+phrase+here
However I would like to remove it from the querystring altogether.
At what point should I remove it? I mean, I can check in the controller whether the string matches, and not use it as keywords for the search, but it is still present in the URL and ideally I would like it to be removed entirely so as not to cause any confusion (plus it looks pretty bad having the default phrase in the URL!).