 |
Related Websites |
 |
<%
'filename is the varible in which you have to specify name of the file
filename="http://www.convonix.net/link/cross-tab/relevantsites2.txt"
Set objXMLHTTP = server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "get",filename, false
objXMLHTTP.Send
PageContent = objXMLHTTP.responseText 'gets the content of page in variable
response.write pagecontent 'displays the content of txt file
%>
|
|
 |
|
|
|
|