gpt4 book ai didi

jquery - IsPostBack 始终 = false 并且 request.QueryString 为 null

转载 作者:行者123 更新时间:2023-12-01 05:57:30 25 4
gpt4 key购买 nike

我想知道为什么 IsPostBack 总是给我 false 并且无法从 Request.QueryString 获取值。我是否遗漏了代码的任何部分?

我的JS

function BtnCal()
{
$.post(missingkids_handler,
{"Action":"MainAct", "SubAction":"SubAct"},
function(response)
{
var rtnObj = response.Data;
alert(rtnObj);
$("#retnTxt").html(rtnObj);
}, "json");

}

我的处理程序 aspx.cs

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{

if (Request.QueryString["Action"] != "" && Request.QueryString["Action"] == "MainAct")
{
if (Request.QueryString["SubAction"] == "SubAct")
{
Response.Clear();
Response.Write("Hello Here");
Response.End();
}
}
}

很简单,我只想在 JS 调用时从 handle.aspx 返回一个字符串

谢谢

最佳答案

只是一位访客,您使用的是 POST 而不是 GET 方法,您的数据不在查询字符串中。尝试使用 Request.Form

if (Request.Form["Action"] != "" && Request.Form["Action"] == "MainAct")

关于jquery - IsPostBack 始终 = false 并且 request.QueryString 为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13985150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com