10

我有一个类来处理会话变量。这里附上一个示例:

namespace General
{

    public class Session
    {
        public Session()
        {
        }


        public static string UserID
        {
            get { return HttpContext.Current.Session["UserID"] as string ?? String.Empty; }
            set { HttpContext.Current.Session["UserID"] = value;  }
        }

        public static string departFlightID
        {
            get { return HttpContext.Current.Session["departFlightID"] as string ?? String.Empty; }
            set { HttpContext.Current.Session["departFlightID"] = value; }
        }

        public static string returnFlightID
        {
            get { return HttpContext.Current.Session["returnFlightID"] as string ?? String.Empty; }
            set { HttpContext.Current.Session["returnFlightID"] = value; }
        }
}

}

现在在某个时候我存储flightID在:

General.Session.departFlightID = flightID;

在另一点上,我想使用 Javascript 检索这个值。我在这里看到了示例,但它们不起作用(没有错误,但它们会返回EMPTY)。

最近的尝试:

 var session = '<%= General.Session.departFlightID %>';
 var session = '<%= HttpContext.Current.Session["departFlightID"] %>';

如果我在页面加载时设置值,它确实有效,但我正在运行一个 web 方法,我在其中创建一个 html,然后将该 html 发送回填充到 div 中以在那里制作票证。我需要获取会话值,但它不会更新。

为了更清楚,这里是 Javascript 代码:

<script type="text/javascript">


function addTicket(flightID, flightType) {
    PageMethods.addTicket(flightID, flightType, OnGetMessageSuccess);
}

function OnGetMessageSuccess(result, userContext, methodName) {

    var pageUrl = document.URL;
    if (pageUrl.indexOf("&ret_date=&") !== -1) {

        var session = '<%= HttpContext.Current.Session["departFlightID"] %>';

        alert(session);
        result = result + "<a onclick=\"searchflight.abortAllAjax()\" data-index=\"6\" class=\"bookNow\" title=\"Book Now!\" href=\"#\">Book Now!</a>";
        result = result + "</div>    </div>  </div>";
        document.getElementById("detail").innerHTML = result;
    }

}

这是网络方法:

[System.Web.Services.WebMethod]
    public static string addTicket(string flightID, string flightType)
    {
        //GET FLIGHT DETAILS  FROM DATATABLE OR SESSION DATA TABLE
        string tmpHtml = string.Empty;
        tmphtml="sample";
        string flightID="123123213";
        General.Session.departFlightID=flightID;

    return tmphtml;
    }
4

3 回答 3

2

这是与此处相同的问题。

我们通常在 Session Variables 中有敏感数据,所以它们总是在服务器端。不过,如果您愿意,您可以尝试在您的 .aspx 标记中添加一个 HiddenField,并在您可以设置它的代码中。设置值后,您可以使用 $("#id") 方式或 Document.GetElementById() 方法轻松访问该值。

于 2013-07-17T13:12:08.400 回答
2

如果您使用的是 mvc,则:

var ttype = ' @HttpContext.Current.Session["TestType"] ';
于 2013-12-19T02:05:41.167 回答
0

默认情况下,WebMethods 不支持 Session 变量。您的 WebMethod 声明应如下所示:

[WebMethod(EnableSession = true)]
于 2013-07-17T16:28:53.023 回答