Posted on: 3/31/2011 2:10:42 AM | Views : 1116

Hello Everyone,
  I enablesd the session state in my web.config file, but still I keep getting this error.
"Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\<system.web>\<httpModules> section in the application configuration."
My web.comfig file is like this
 
 
<system.web> <compilation debug="true" targetFramework="4.0"> <assemblies> <add assembly="Oracle.DataAccess, Version=2.111.6.0, Culture=neutral, PublicKeyToken=89B483F429C47342"/></assemblies></compilation> <pages enableSessionState="true" autoEventWireup="true"> <controls> <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.U ...

Go to the complete details ...