Språk: VB
Hämta sessionsvärde till global variabel
Svara
i mitt Codebehind-formulär vill jag skapa en sid-global variabel som tilldelas värde från ett sessionsvärde, typ:
<code>
Private strFilePath As String = "/mapp1/mapp2/" & Session("intCompanyID")
</code>
Jag har provat att importera System.Web.SessionState och System.Web.HttpApplication utan framgång.
Hjälp, tack!
Löstes med: System.Web.HttpContext.Current.Session("intCompanyID")