I am working on an asp.net MVC web application. and i am building a URI to be sent to a web api. but the UriBuilder
is adding these characters %u200b
to the beginning of a parameter.
here is my method:-
public string Add(string title, string account,string site,string description)
{
XmlDocument doc = new XmlDocument();
using (var client = new WebClient())
{
var query = HttpUtility.ParseQueryString(string.Empty);
query["account"] = account;
query["site"] = site;
query["title"] = title;
query["description"] = description;
string apiurl = System.Web.Configuration.WebConfigurationManager.AppSettings["ApiURL"];
var url = new UriBuilder(apiurl);
url.Query = query.ToString();
string xml = client.DownloadString(url.ToString());
doc.LoadXml(xml);
now the site
parameter will be passed to the method as Manchester (MAN)
but the final query will have the parameter with %u200b
added to it as follow:-
https://****?account=ABC&site=%u200bManchester+(MAN)&title=ABCDE
so can anyone advice on this please? why the UriBuilder
is adding %u200b
to the parameter ?? now the value i am passing is actually a drop-down option, and it is rendered correctly as follow + if i chose another option for the site name i will not face the problem:-
The issue is that you have a zero width space in your string (which, as the name suggests, is 'invisible').
Unfortunately
string.Trim
does not remove those characters, as per the docs:Thus you need to either move to .NET 3.5 SP1 or earlier (not recommended) or use
string.Replace("\u200B", "")
as @StephenMuecke suggested.Or, even better, fix your source database to remove the errant character there.
I'd also recommend installing Notepad++ to more easily see these hidden characters in future.