標籤:http java strong os cti io
貼上範例程式碼,ie中有效(搜狗沒效果),其餘未測。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
function btnclick() {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //建立xmlhttp對象
if (!xmlhttp) {
alert("建立xmlhttp對象失敗!");
}
xmlhttp.open("POST", "GetDate.ashx?ts" + new Date(), false);
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {
alert(xmlhttp.responseText);
document.getElementById("Text1").value = xmlhttp.responseText;
}
else {
alert("ajax伺服器返回錯誤");
}
}
}
xmlhttp.send();
}
</script>
</head>
<body>
<input id="Text1" type="text" />
<input id="Button1" type="button" value="button" onclick="btnclick()"/>
</body>
</html>
其中GetDate.ashx頁面只是返回伺服器時間,無他用。代碼如下:
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.Write(DateTime.Now.ToString());
}
public bool IsReusable {
get {
return false;
}
}