OpenFileDialog openFileDialog = new OpenFileDialog();
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
path = openFileDialog.FileName;
}
this.txtFilePath.Text = path;
FileStream fs1 = new FileStream(path, FileMode.Open);
StreamReader sr = new StreamReader(fs1);
string telephone = sr.ReadToEnd();
sr.Close();
fs1.Close();
this.txtContent.Text = telephone;