простите! Конечно в скрипте ошибка - это не тот скрипт
Вот на JS:
<script language="javascript" runat="server">
var xmlhttp;
function loadXMLDoc(url) {
xmlhttp = null;
if (window.XMLHttpRequest) {// Для всех браузеров кроме ослов 5 и 6
xmlhttp = new XMLHttpRequest();
}
else if (window.ActiveXObject) {// для IE5-6
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp != null) {
xmlhttp.onreadystatechange = state_Change;
xmlhttp.open("GET", url, true);
xmlhttp.send(null);
}
else {
alert("Your browser does not support XMLHTTP.");
}
};
loadXMLDoc("http://m.tele-club.ru/rasspisanie/modules/exp_xml.php?m=exp_xml&idu=91&idf=94&idg=66&d=2009-08-31");
Response.Write(xmlhttp.toString());
</script>