M
Moshe Foobar
Hi,
When i save a url into a string :
string myURL = @"http://www.allmusic.com/cg/amg.dll?p=amg&sql=2surfer|rosa";
but when i d/l this page :
WebClient myClient = new WebClient();
StreamReader sr = new
StreamReader(myClient.OpenRead_searchAlbum),System.Text.Encoding.Unicode);
string result = sr.ReadToEnd();
string result = sr.ReadToEnd();
its seems that the pipeline "|" turnd into %c7 and the spaces turned
to %20
how can I fix that ?
When i save a url into a string :
string myURL = @"http://www.allmusic.com/cg/amg.dll?p=amg&sql=2surfer|rosa";
but when i d/l this page :
WebClient myClient = new WebClient();
StreamReader sr = new
StreamReader(myClient.OpenRead_searchAlbum),System.Text.Encoding.Unicode);
string result = sr.ReadToEnd();
string result = sr.ReadToEnd();
its seems that the pipeline "|" turnd into %c7 and the spaces turned
to %20
how can I fix that ?