I need to read content of a text file in client machine, I am using below code:
using (System.IO.StreamReader myFile = new System.IO.StreamReader(@"c:\\weight.txt"))
{
string myString = myFile.ReadToEnd();
}
It searches for file in server instead of client, is there any other way to read text.
Regards,
Bala
Go to the complete details ...