I use UpdatePanel in my aspx page and DropDownList with onselectedindexchanged
method.
When run first time onselectedindexchanged
method is working. But change selected again it return an error like that;
Uncaught Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: The state information is invalid for this page and might be corrupted.
<asp:ScriptManager ID="ScriptManager1" runat="server" EnableViewState="False" EnableScriptGlobalization="true" >
</asp:ScriptManager>
<%@ Page Title="" Language="C#" AutoEventWireup="true"
EnableEventValidation="false" ... %>
Not : I have to Partial Rendering so i cant add EnablePartialRendering="false"
to ScriptManager.
How can i solve this problem?