Currently have a rad grid that will load fine in development but once it is moved into production receive a script timeout error. In Production, the first load of the page works but have a RadComboBox that allows for Autopostback that changes the results in my RadGrid. It is at this point that I receive the timeout. Each time in production it will timeout after 30 seconds and have not figured out a way to stop it from timing out. I have compared the values with IIS to compare script timeouts and they are the same. It is trying to process 19,000 records, which I know it may take some time to query but in development the query doesn't take long at all to complete.
Following code is in web.config
<httpRuntime maxRequestLength="612353" executionTimeout="600"/>Code found in ASPX page as I seen this suggested by others.
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server" AsyncPostBackTimeout="600"></telerik:RadScriptManager>Also added the following to my code and did not affect the outcome:
ValidateRequest="false"
In an attempt to resolve the problem I changed how my RadGrid would receive the data from client-side to code-behind where I could specify the command timeout and this has only caused the page to load for 5 seconds and not even return indications of and error. Just not update my RadGrid, though it will change a information box that was created.
Looking for suggestions that might help in resolving this error.