Issue with Databinding Control in MultiView

weemeEtendY

New Member
I have a \[code\]MultiView\[/code\] that contains around five views. In one of my views, I have a DropDownList that gets populated \[code\]OnLoad\[/code\].ASPX:\[code\]<asp:View ID="Step4" runat="server" OnLoad="Step4_Load" ><label>Where do you live:</label><div> <asp:DropDownList ID="drpCountry" CssClass="country" runat="server"></asp:DropDownList></div></asp:View>\[/code\]Codebehind:\[code\]protected void Step4_Load(object sender, EventArgs e){ PopulateCountries(); //Populate data from DB }\[/code\]If I navigate between any of my views after making a selecting in my drop down list, I get the following error: \[quote\] Invalid postback or callback argument. Event validation is enabled using in configuration or <%@ Page EnableEventValidation="true" %> in a page.\[/quote\]I understand what the error is after reading quite a few articles on the topic. But I can't fathom why this is occurring.Any help is appreciated!
 
Back
Top