I have a pretty weird situation going on here. I have a desktop application that creates temporary html files and I am trying to get the name of that file. The method that's already written by someone else get the name however it changes the characters '{' and '}' to '%7B' and '%7D' respectively. Not sure why but it does. This makes it so that I can't find the file in the temp folder because there is a mismatch. I figured it would be simple enough to do a String.Replace to put the '{' and '}' back in, and it was. It finds the file now. But when I go to parse the html, it's written in some non English characters instead of it's original format. Does anyone have any clue why and any idea how to get it back to English?
↧