我有一个类来处理会话变量。这是附件样本:
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;
}
答案 0 :(得分:2)
这是与here相同的问题。
我们通常在会话变量中有敏感数据,所以它们总是服务器端。如果你想要,你仍然可以尝试在.aspx标记中添加一个HiddenField,在后面的代码中你可以设置它。设置值后,您可以使用$(“#id”)方式或Document.GetElementById()方法轻松访问该值。
答案 1 :(得分:2)
如果您使用的是mvc,那么:
var ttype = ' @HttpContext.Current.Session["TestType"] ';
答案 2 :(得分:0)
默认情况下,WebMethods不支持Session变量。您的WebMethod声明应如下所示:
[WebMethod(EnableSession = true)]