This is an example from w3schools. I tried to execute this in my system, but it does not work.
My file is testajax.html
Expand|Select|Wrap|Line Numbers
- text
- <html>
- <body>
- <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","time.asp",true);
- xmlHttp.send(null);
- }
- </script>
- <form name="myForm">
- Name: <input type="text" onkeyup="ajaxFunction();" name="username" />
- Time: <input type="text" name="time" />
- </form>
- </body>
- </html>
///////////////////////////////////////
another file time.asp
<%
response.expires=-1
response.write(time)
%>
//////////////////////////
I wrote exactly like this but it does not give time wehn I execute...
Please let me know what is the problem