I have the following string LIVEWIRE TS+
When I do the following code:
<a href="/support/knowledge-base?category=@Server.UrlEncode("LIVEWIRE TS+")" class="topic-knowledge-base button">KNOWLEDGE BASE</a>
It produces the following query string:
LIVEWIRE+TS%2b
I thought a space was %20 when encoded.
Ok, after decoding it, I got back LIVEWIRE TS, but not LIVEWIRE TS+. How can I retain the + sign?