Mam metodę na stronie oznaczonej jako [WebMethod]
, który używa pewien stan sesji jako część jego działania. Po tym, jak napisałem ten kod, nagle miałem pamięć flash, która wymaga użycia EnableSessionState
, gdy używasz stanu sesji w [WebMethod]
(np. Patrz tutaj: http://msdn.microsoft.com/en-us/library/byxd99hx.aspx). Ale wygląda na to, że działa dobrze. Czemu?Dlaczego WebMethod może uzyskać dostęp do stanu sesji bez EnableSessionState?
próbki za:
protected void Page_Load(object sender, EventArgs args) {
this.Session["variable"] = "hey there";
}
[System.Web.Services.WebMethod]
public static string GetSessionVariable() {
return (string)HttpContext.Current.Session["variable"];
}
Próbka ciała html:
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
function getSession() {
$.ajax({
type: 'POST',
url: 'Default.aspx/GetSessionVariable',
data: '{ }',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (msg) {
document.getElementById("showSessionVariable").innerHTML = msg.d;
}
});
return false;
}
</script>
<form id="form1" runat="server">
<div id="showSessionVariable"></div>
<button onclick='return getSession()'>Get Session Variable</button>
</form>