gpt4 book ai didi

c# - jquery ajax post 到 .aspx 页面加载 - 如何读取发布的变量?

转载 作者:行者123 更新时间:2023-12-02 19:27:48 28 4
gpt4 key购买 nike

我正在尝试将 ajax post 发送到 aspx 页面。如何读取变量“myVar”? 在下面的代码中 HttpContext.Current.Request("myVar") 没有返回任何内容

var p = { "myVar": JSON.stringify(tableOBJ) };

$.ajax({
type: "POST",
url: "Default2AJAX.aspx",
data: p,
success: function (data) {

}
});

Default2AJAX.aspx 背后的代码

Partial Class Default2AJAX
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

Dim s As String = HttpContext.Current.Request("myVar") ''not working???????

End Sub

End Class

最佳答案

我觉得应该是

HttpContext.Current.Request.Form("myVar")

关于c# - jquery ajax post 到 .aspx 页面加载 - 如何读取发布的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11852298/

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