InteliSource is a server side component which uses a direct winsock connection to a web server to retrieve a web page and return it's source as a string. The COM also contains a secondary function to remove all HTML code from the returned string.
Methods
objSource.Retrieve( url )This function is what returns the source of the specified URL (url). The URL variable must be a full url, such as "http://www.yahoo.com". If the URL is not properly formated, the COM will error.
Properties
objSource.RemoveHTMLThis property is a boolean (True/False) property. If set to True, InteliSource will remove all HTML coding from the string before it returns it to the script.
The following sample will create an instance of the InteliSource component, and retrieve the source of http://www.yahoo.com, and return it as a string to the ASP script, which prints it to the document.