将asp.net会话变量传递给通过jquery调用的Web方法

时间:2010-09-28 09:05:54

标签: asp.net-ajax

function getMainContent(ID, num, lang){
$.ajax({
    type: "POST",
    url: "WebMethods.aspx/showMain",
    data: '{AID: "' + articleID+ '", ANum: "' +num + '"}', 
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: showSuccess,
    failure: function(response) {
        alert(response);
    }
});

lang在我的页面上可用作Session [“Lang”]。 如何访问并将其发送到Web方法?

1 个答案:

答案 0 :(得分:7)

您可以直接访问页面方法中的会话:

[WebMethod(EnableSession = true)]
public static string ShowMain()
{
    var lang = HttpContext.Current.Session["Lang"];  
    return "foo";
}