Ajax前台如何向后台传值呢,本人对ajax不懂,肯定大神帮助,在此谢谢了.

2024-12-03 05:59:48
推荐回答(1个)
回答1:

// ↓一般处理程序
<%@ WebHandler Language="C#" Class="Handler" %>

using System;
using System.Web;

public class Handler : IHttpHandler {

public void ProcessRequest (HttpContext context) {
int id = 0;
int.TryParse(context.Request.Form["id"], out id);//接收参数
string name = context.Request.Form["name"];

//这里进行数据处理 或 对数据库的操作

context.Response.ContentType = "text/plain";//返回数据类型
context.Response.Write("id:" + id + " name:" + name);//返回数据
}

public bool IsReusable {
get {
return false;
}
}

}

// ↓ 页面
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %>