Dim fileContents As String = String.EmptyDim fPath As String = "D:\Ftest.txt"Dim Sr As System.IO.StreamReader = System.IO.File.OpenText(fPath)fileContents = Sr.ReadToEnd()Sr.Close()
Login to post response