You must turn off session state in your .net config. It's located in:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config and/or machine.config
and
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG\web.config and/or machine.config
Once we changed the setting to turn sessionstate off, the product page will load.
Usually you would need to remove the configuration section from the Web.config and/or machine.config.
<configuration>
<system.web>
<pagesenableSessionState="false" />
</system.web>
</configuration>
or
<configuration>
<system.web>
<pages enableSessionState="ReadOnly"/>
</system.web>
</configuration>