AJAX入门小问题 大牛帮忙看下代码什么地方有问题
前台:functionButton1_onclick(){varamount=$("#Text").val();varmoneytype=$("#Select1").va...
前台: function Button1_onclick() {
var amount = $("#Text").val();
var moneytype = $("#Select1").val();
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //用的是IE
if (!xmlhttp) {
alert("创建XMLHTTP对象异常")
return false;
}
xmlhttp.open("POST", "HuiLv1.ashx?amount="+amount+"&moneytype="+moneytype, false
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
alert(xmlhttp.status);//实验返回值怎么是500呢 是后台代码有问题么?
if (xmlhttp.status == 200) {
$("#Text2").val(xmlhttp.responseText); }
else {
alert("AJAX服务器返回错误!");
}
}
}
xmlhttp.send();
}
后台:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AJAX
{
/// <summary>
/// HuiLv1 的摘要说明
/// </summary>
public class HuiLv1 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
string amount = context.Request["amount"];
string moneytype = context.Request["moneytype"];
int iAmount = Convert.ToInt32(amount);
if (moneytype == "1")//美元
{
context.Response.Write(iAmount / 7);
}
else if (moneytype == "2")//日元
{
context.Response.Write(iAmount * 10);
}
else if (moneytype == "3")//港币
{
context.Response.Write(iAmount * 10 / 9);
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
主要问题就是xmlhttp.status怎么就成了500了呢 服务器端有什么问题么
谢谢
不好意思啊 后台代码的Helloword 是没有的 多打了 展开
var amount = $("#Text").val();
var moneytype = $("#Select1").val();
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //用的是IE
if (!xmlhttp) {
alert("创建XMLHTTP对象异常")
return false;
}
xmlhttp.open("POST", "HuiLv1.ashx?amount="+amount+"&moneytype="+moneytype, false
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
alert(xmlhttp.status);//实验返回值怎么是500呢 是后台代码有问题么?
if (xmlhttp.status == 200) {
$("#Text2").val(xmlhttp.responseText); }
else {
alert("AJAX服务器返回错误!");
}
}
}
xmlhttp.send();
}
后台:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AJAX
{
/// <summary>
/// HuiLv1 的摘要说明
/// </summary>
public class HuiLv1 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
string amount = context.Request["amount"];
string moneytype = context.Request["moneytype"];
int iAmount = Convert.ToInt32(amount);
if (moneytype == "1")//美元
{
context.Response.Write(iAmount / 7);
}
else if (moneytype == "2")//日元
{
context.Response.Write(iAmount * 10);
}
else if (moneytype == "3")//港币
{
context.Response.Write(iAmount * 10 / 9);
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
主要问题就是xmlhttp.status怎么就成了500了呢 服务器端有什么问题么
谢谢
不好意思啊 后台代码的Helloword 是没有的 多打了 展开
3个回答
展开全部
是的.楼主的status返回500,就说明是后台内部程序错误.你直接在浏览器中访问一下这个地址.看看是出什么错.或者跟踪一下错误信息.看看是什么问题
楼主应该多了解一下浏览器返回的状态码.
楼主应该多了解一下浏览器返回的状态码.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
500应该是后台代码程序语法错误。
楼主的后台,是.net c#吗,这个我不会,我只会asp。
调试的时候,可以直接构造参数访问:HuiLv1.ashx?amount=&moneytype=
然后查看返回的源代码
楼主的后台,是.net c#吗,这个我不会,我只会asp。
调试的时候,可以直接构造参数访问:HuiLv1.ashx?amount=&moneytype=
然后查看返回的源代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询