Hi,
I am trying to read the file contents using
After reading the file contents the special charaters (á) gets replaced with some garbage characters like "?".
To elliminate this I have used encoding along with above method
But still it is not working.Can anybody have the solution for this
Regards
Amol Lokhande
I am trying to read the file contents using
Code:
System.IO.File.ReadAllText
To elliminate this I have used encoding along with above method
Code:
System.IO.File.ReadAllText(strFile, System.Text.Encoding.ASCII)
Regards
Amol Lokhande
Comment