I have a web application which use telerik controls.
I'm using viewstate compression
In web.config:
-----------------
<httpModules>
<add name="RadCompression" type="Telerik.Web.UI.RadCompression"/>
</httpModules>
<modules runAllManagedModulesForAllRequests="true">
<remove name="RadCompression" />
<add name="RadCompression" type="Telerik.Web.UI.RadCompression"
preCondition="integratedMode" />
</modules>
In browser file:
------------------
<browser refID="Default">
<controlAdapters>
<adapter controlType="System.Web.UI.Page"
adapterType="Telerik.Web.UI.RadHiddenFieldPageStateCompression"/>
<!-- <adapter controlType="System.Web.UI.Page"
adapterType="Telerik.Web.UI.RadSessionPageStateCompression"/>-->
</controlAdapters>
</browser>
The problem is when open a web page and do some actions like building a grid or filling RadComboBox, and then wait while doing nothing in the page (receive a call as i work in a call center and filling the data from this call) after about 10 minutes the page lost its data that has been filled (ComboBox items disappear and RagGrid rows disappear completely).
The page seems to be come from the server without running the load event at least.
This happened in many pages around the web application.
I Hope you can help me cause I'm stuck in it.
Thank you.
I'm using viewstate compression
In web.config:
-----------------
<httpModules>
<add name="RadCompression" type="Telerik.Web.UI.RadCompression"/>
</httpModules>
<modules runAllManagedModulesForAllRequests="true">
<remove name="RadCompression" />
<add name="RadCompression" type="Telerik.Web.UI.RadCompression"
preCondition="integratedMode" />
</modules>
In browser file:
------------------
<browser refID="Default">
<controlAdapters>
<adapter controlType="System.Web.UI.Page"
adapterType="Telerik.Web.UI.RadHiddenFieldPageStateCompression"/>
<!-- <adapter controlType="System.Web.UI.Page"
adapterType="Telerik.Web.UI.RadSessionPageStateCompression"/>-->
</controlAdapters>
</browser>
The problem is when open a web page and do some actions like building a grid or filling RadComboBox, and then wait while doing nothing in the page (receive a call as i work in a call center and filling the data from this call) after about 10 minutes the page lost its data that has been filled (ComboBox items disappear and RagGrid rows disappear completely).
The page seems to be come from the server without running the load event at least.
This happened in many pages around the web application.
I Hope you can help me cause I'm stuck in it.
Thank you.