R
reeset
Guest
I have the following url:
id.loc.gov/authorities/names/label/Col%C3%B4nia%20Santa%20Izabel%20%28Hospital%20%3A%20Belo%20Horizonte%2C%20Brazil%29
This URL should resolve, but when I create a URI to pull the data via an HttpWebRequest, the URL is changed to:
id.loc.gov/authorities/names/label/Col%C3%B4nia%20Santa%20Izabel%20(Hospital%20%3A%20Belo%20Horizonte%2C%20Brazil)
Unencoding the "(" and ")" values. I don't think these values should be unencoding, and I'm not sure how to stop it. I've escaped the script and would just like the URI created as is.
Example of how to recreate:
string url = "Colônia Santa Izabel (Hospital : Belo Horizonte, Brazil) - LC Linked Data Service: Authorities and Vocabularies | Library of Congress";
System.Uri search_uri = new Uri(uri);
MessageBox.Show(search_uri.AbsoluteUri);
Any ideas?
--tr
Continue reading...
id.loc.gov/authorities/names/label/Col%C3%B4nia%20Santa%20Izabel%20%28Hospital%20%3A%20Belo%20Horizonte%2C%20Brazil%29
This URL should resolve, but when I create a URI to pull the data via an HttpWebRequest, the URL is changed to:
id.loc.gov/authorities/names/label/Col%C3%B4nia%20Santa%20Izabel%20(Hospital%20%3A%20Belo%20Horizonte%2C%20Brazil)
Unencoding the "(" and ")" values. I don't think these values should be unencoding, and I'm not sure how to stop it. I've escaped the script and would just like the URI created as is.
Example of how to recreate:
string url = "Colônia Santa Izabel (Hospital : Belo Horizonte, Brazil) - LC Linked Data Service: Authorities and Vocabularies | Library of Congress";
System.Uri search_uri = new Uri(uri);
MessageBox.Show(search_uri.AbsoluteUri);
Any ideas?
--tr
Continue reading...