I've got a simple little AJAX snippet that I'm trying to get to work..
http://vacorp.com/Practice/testAjax.htm
And I am getting an error, "Object Expected"
It's a real simple thing I'm sure, but I'm missing it. Any ideas?
testAjax.htm:
time.asp:
http://vacorp.com/Practice/testAjax.htm
And I am getting an error, "Object Expected"
It's a real simple thing I'm sure, but I'm missing it. Any ideas?
testAjax.htm:
Code:
<script type="text/javascript">function ajaxFunction()
{var xmlHttp;
try
{ // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); }
catch (e)
{ // Internet Explorer try
{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
catch (e)
{ try
{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e)
{ alert("Your browser does not support AJAX!"); return false; } } }
xmlHttp.onreadystatechange=function()
{
if(xmlHttp.readyState==4)
{
document.myForm.time.value=xmlHttp.responseText;
}
}
xmlHttp.open("GET","/Practice/time.asp",true);
xmlHttp.send(null); }</script>
<html><body><form name="myForm">
Name: <input type="text" onkeyup="ajaxFunction();" name="username" />
Time: <input type="text" name="time" />
</form>
</body>
</html>
time.asp:
Code:
<%
response.expires=-1
response.write(time)
%>