I'm trying to replace "%20" with " " (that's a blank space) when I click on an imagebutton to post an article to twitter.
Problem is that when logging on to twitter to post the tweet, I can't get the .net (c#) code to replace "%20" with a blank space so as to separate words in a phrase.
I'm using the following code to replace:
string sm_title = Rdr.GetString(1).ToString().Replace("%20", " ");
Have tried:
string sm_title = Rdr.GetString(1).ToString().Replace("%20", " ");
and others.
I've also tried replacing at the imagebutton too...not working.
Thanks for any help.