我在Web浏览器上创建了一个按钮,点击它时应该执行一个asp文件。我是否创建了这个!!我不知道为什么我的xmlhttp请求没有被发送。我在localhost上尝试了这个,但似乎仍然没有任何工作!代码用于onclick按钮,即javascript就像这样!!
CustomButton = {
1: function ()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","http://localhost/Default.asp",true);
xmlhttp.send();
}
}
我正在使用默认.asp文件所在的htdocs文件夹.Default.asp的代码是
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication9._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<%
="Hello World!"
%>
</form>
</body>
</html>
为什么这段代码不起作用????
答案 0 :(得分:0)
尝试使用Firefox上的Firebug脚本调试器帮助调试代码。
你也可以在Firefox中使用Http Fox Addon来分析请求和响应。
通过使用此功能,您可以查看您的请求是否转到了正确的文件。 还有什么回应。