AboutSrini Nagarajan Expertise I can answer any kind of questions in ASP.NET, C#, VB.NET, SharePoint 2007, ASP, Coldfusion, Powerbuilder 7.00 / 8.00, JAVA servlets, MS SQL 2000 / MSSQL7, Sybase
Experience Contact me if you need any custom development on ASP.NET, ASP, SharePoint 2007, Coldfusion, Powerbuilder.
Expert: Srini Nagarajan Date: 6/18/2005 Subject: reading html source code
Question Hi!
I just want to ask you if you know how can I read the source code of a certain webpage using ASP vbscript and store it to a text file?
thanks for your time =)
Norman
Answer HI
Here is the Code you can use this and read the file.
One of the most important tasks in any programming language is the ability to read and write files. The steps involved in ASP are no different than many other languages:
Specify the location of the file
Determine if the file exists
Get a handle to the file
Read the contents
Close the file and release any resources used
File I/O in ASP can be done using the FileSystemObject component. When opening a text file you simply open it as a text stream, and it is this text stream that you use to access the contents of the file.
The FileSystemObject allows you to perform all file and folder handling operations. It can either return a file which can then be opened as a text stream, or it can return a text stream object directly.
In the following I present two different methods. The first method gets a file object and uses that to open the text stream, and the second method opens the text stream directly from the FileSystemObject.