错误:此页面的状态信息无效,可能已损坏

时间:2013-04-11 13:29:05

标签: c# asp.net asp.net-3.5

我看到了错误:

The state information is invalid for this page and might be corrupted

在我的页面上。基于一些阅读,我认为错误可能由于几个原因而发生,并且可能很难进行故障排除。

在aspx页面上,我有两个下拉控件:

<asp:DropDownList ID="DropDownList3" runat="server" DataSourceID="dsClients" DataTextField="Client_Name" DataValueField="Client_Name" AutoPostBack="True" OnSelectedIndexChanged="DropDownList3_SelectedIndexChanged" ondatabound="DropDownList3_DataBound"></asp:DropDownList>
<asp:DropDownList ID="ddQualIDInsert" runat="server" DataSourceID="dsQual" DataTextField="Project_Name" DataValueField="Qual_ID"></asp:DropDownList>

在代码隐藏文件中,我使用ajax根据第一个下拉菜单中的选定值更新并重建第二个下拉选项:

protected void DropDownList3_SelectedIndexChanged(object sender, EventArgs e)
{
   dsQual.Where = "Client_Name = \"" + ((DropDownList)sender).SelectedValue +"\"";
}

有时候下拉获取的人数会有所增加,但大多数情况下会抛出错误。

2 个答案:

答案 0 :(得分:0)

您正在动态更改页面(服务器端控件)并且会更改页面的view state,因此在回发后,ASP.NET解密view state并且与预期的不匹配。< / p>

答案 1 :(得分:0)

我遇到了这个问题,我花了很长时间才在我的代码中解决它。


首先,我有UpdatePanel和一个jquery对话框。下面是我正在使用的脚本。

<script>
     var uiDialog = $('.ui-dialog-container').parent();
     (uiDialog.next().length && uiDialog.appendTo((document.forms.item(0) != null) ?   document.forms.item(0) : document.body));
     //verifyUser();
     function ShowDialog() {

         dialog = $("#dialog-form").dialog({
             autoOpen: true,
             resizable: false,
             height: 400,
             width: 800,
             modal: true,
             overlay: {
                 backgroundColor: '#000',
                 opacity: 0.5
             }


         });
     }



</script>

这是表格

<div id="dialog-form" title="Verify Transaction" style="display:none;" >
    <asp:ScriptManager ID="ScriptManager2" runat="server"  />


            <fieldset style="background-color:#ffd800;border-radius:5px;">

            <label for="fname">First Name    :</label>
            <label for="fname"><%= DetailsView1.Rows[7].Cells[1].Text %></label><br />

            <label for="lname">Last Name     :</label>
            <label for="lname"><%= DetailsView1.Rows[9].Cells[1].Text %></label><br />

            <label for="zip">Zip Code        :</label>
            <label for="zip"><%= DetailsView1.Rows[22].Cells[1].Text %></label><br />



            </fieldset>
    <hr />
    <asp:Button id="btnVerified" runat="server" OnClick="btnVerify_Click" UseSubmitBehavior="false" Text="Verified" />
            <asp:Button ID="btnCancelled" runat="server" OnClientClick="dialog.dialog('close')" Text="Cancelled" UseSubmitBehaviour="false"/>


</div>

在这里,我们看到我在Button Control中使用服务器端和客户端脚本。对它们两者起作用的重要一点是从对话框中删除表单标记,将脚本放在UpdatePanel中并设置UseSubmitBehaviour =“false”。这将导致对话框回发,这是我们需要进入服务器端的。

最初我有表格标签。删除表单标记后,它执行了OnClientClick事件和OnClick服务器端事件。干杯!!如果有任何正文存在这个问题,那就是解决方案。

以下问题最终得到解决:

  1. 客户端事件执行。
  2. 使用jQuery-UI对话框弹出服务器端事件。
  3. 执行PostBack的Dialog,这意味着我们可以在对话框中拥有一个包含控件的完整ASP.NET表单。
  4. “此页面无效的状态信息可能已损坏”的问题已得到解决。
  5. 注意:我在表单中使用DetailsView控件。

    干杯!!