Can anybody tell me how to read Html file from Visual basic.
reading Html file from visual basic
Collapse
X
-
Tags: None
-
Do you just want to read the text of an html file you have stored locally?Originally posted by amit260906Can anybody tell me how to read Html file from Visual basic.
if so I would think you could just treat it as you would a text file
using something like
OPEN "c:\MyFile.html " FOR INPUT as #1
Input #1, x
CLOSE #1
Comment