0

我使用此代码将参数从 jQuery 传递到 ASHX,实际上我想使用 Uploadify 插件上传文件并将名为“Id”的参数发送到 ASHX

function CallHandler() {
    $.ajax({
        url: "PIU.ashx/MyMethod",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        data: { 'Id': '10000' },
        responseType: "json",
        success: OnComplete,
        error: OnFail
    });
    return false;
}

function OnComplete(result) {
    alert(result);
}
function OnFail(result) {
    alert('Request Failed');
}

这个 ASHX 代码:

public void ProcessRequest(HttpContext context)
{
    var employee = Convert.ToInt32(context.Request["Id"]);

    JavaScriptSerializer javaScriptSerializer = new JavaScriptSerializer();
    string serEmployee = javaScriptSerializer.Serialize(employee);
    context.Response.ContentType = "text/html/plain";
    context.Response.Write(serEmployee);

    parent MyParent = (parent)context.Session["mahdZNUparent"];

    //the file data is the file that posted by Uploadify plugin
    HttpPostedFile PostedFile = context.Request.Files["Filedata"];

    string FileName = PostedFile.FileName; // whene i comment this line, the code works
    // properly, but when uncomment this line, the code get to 'Request Failed'
}

public bool IsReusable
{
    get
    {
        return false;
    }
}

我怎么解决这个问题!!!!!!!

4

1 回答 1

1

您可能想在此掠夺:http ://encosia.com/using-jquery-to-consume-aspnet-json-web-services/

还有这个:Using jQuery for AJAX with ASP.NET Webforms

于 2013-02-20T20:44:59.120 回答