Working on Windows Form applicationI have a htm file saved on my local drive . I need to write the content of that file and write that into my database field . \[code\] Dim objstream As New StreamReader("C:\Users\Readme.htm") textBox1.Text = objstream.ReadLine()\[/code\]Seems like the above code works only for text files . Can you please help me on what to use for reading the content for html files in vb.net. Thank you !