There seems to be an issue with enabling sesstion state via pages/enableSessionState setting in web.config. We will investigate. For now, Michael, have you tried to enable it from page directive on the aspx file? For example,
<%
@ Page Language="IronPython" CodeFile="Default.aspx.py" EnableSessionState="true" %>
I was able to get below code working on an IronPython page:
def Page_Load():
Session.Add("test", "some test value")
Response.Write(Session["test"])
Response.Write(Session.IsCookieless)
Response.Write(Session.Timeout)
settings in <sessionState> section are all effective.
Please let us know if this doesn't help.
Thanks!
Qing