I have deployed a web application on IIS. Its working perfectly on local host but when I deploy it at the IIS it kills the session before going to the next page.
here is my web.config
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<sessionState timeout="60" />
</system.web>
How can I prevent IIS from kill the session?