Hi DPK...I was able to show spaces...but with a MultiLine TextBox.
See the below code if it helps you.
----------------------------------------
//Code Start
protected void Realwhole()
{
string thefile = Server.MapPath("tic.txt");
StreamReader srdr = default(StreamReader);
srdr = File.OpenText(thefile);
string someString = string.Empty;
while (srdr.Peek() != -1)
{
someString = srdr.ReadToEnd();
TextBox1.Text = someString;
}
srdr.Close();
}
//Code End
