it's a sports site with lots of text, i will be sorting through the text for interests later.
the only code that i have come across is:
<html>
<body>
<script language="JScript">
<!--
function open()
{
var result = string.Empty;
using (var webClient = new System.Net.WebClient())
result = webClient.DownloadString("http://some.url");
var myObject, afile;
myObject = new ActiveXObject("Scripting.FileSystemObject");
afile = myObject.OpenTextFile("F:\\sports.txt", 8, true, 0);
afile.write (result);
afile.close();
}
-->
</script>
Open a text stream for the file sport.txt
<form name="myForm">
<input type="Button" value="Open File" onClick='open()'>
</form>
</body>
</html>
any help would be appreciated, i can write in other languages too if needed. please direct me!!