I have WCF REST service which retrieves tags from database. Some tags have special chars like &, +, #, (, ) in them. I am able to retrieve tags with #, (, and ) by url encoding the query string.
But I am not able to retrieve tags with '&' and '+' by url encoding the query string.
I would like to know the solution for this.
Thanks