asp.net更新面板仍然刷新页面

时间:2013-01-09 06:28:48

标签: asp.net updatepanel partial-postback

我已经使用更新面板在asp.net webform页面中进行部分回发但是没有部分加载它重新加载漏洞页面我使用combobox用onSelectIndexChanged事件做回发 我的代码:

 <asp:UpdatePanel runat="server" ID="updatePanel1" >
            <ContentTemplate>
                <table  style="direction:rtl;width:416px;" runat="server" clientidmode="Static">
                <tr class="trwidth">
                <td>
                    <asp:DropDownList ID="comboCategory" runat="server" 
                        DataTextField="job_name" DataValueField="job_cat_id" DataSourceID="SqlDataSource1">
                    </asp:DropDownList>
                    <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
                        ConnectionString="<%$ ConnectionStrings:JobsConnectionString %>" 
                        SelectCommand="SELECT * FROM [job_category]"></asp:SqlDataSource>
                 </td>
                    <td>

                              <asp:DropDownList ID="comboCountry" runat="server" AutoPostBack="True"  ClientIDMode="Static" DataSourceID="SqlDataSource3"  
                                  OnSelectedIndexChanged="comboCountry_OnSelectedIndexChanged"
                                    DataTextField="country_name" DataValueField="country_id">        
                                  </asp:DropDownList>
                                <asp:SqlDataSource ID="SqlDataSource3" runat="server" 
                                    ConnectionString="<%$ ConnectionStrings:JobsConnectionString %>" 
                                    SelectCommand="SELECT * FROM [country]"></asp:SqlDataSource>          
                                </td>
                             </tr>
                            <tr class="trwidth">
                            <td>

                                <asp:DropDownList ID="comboCity" runat="server" DataSourceID="SqlDataSource2" ClientIDMode="Static"
                                    DataTextField="city_name" DataValueField="location_id">
                                </asp:DropDownList>
                                <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
                                    ConnectionString="<%$ ConnectionStrings:JobsConnectionString %>" 
                                    SelectCommand="SELECT * FROM [location]"></asp:SqlDataSource> 
                </td>     
                <td>

                    <asp:DropDownList ID="comboGender" runat="server" 
                        DataSourceID="SqlDataSource4" 
                        DataTextField="gender_name" DataValueField="gender_id" ClientIDMode="Static">

                    </asp:DropDownList>
                    <asp:SqlDataSource ID="SqlDataSource4" runat="server" 
                        ConnectionString="<%$ ConnectionStrings:JobsConnectionString %>" 
                        SelectCommand="SELECT * FROM [gender]"></asp:SqlDataSource>
                </td>

                 </tr>
                 <tr class="trwidth">
                <td colspan="2" style="text-align:center;padding-left: 130px;direction: ltr">
                    <dx:ASPxDateEdit ID="ASPxDateEdit" runat="server"  NullText="دوا بەروار">
                    </dx:ASPxDateEdit>
                    </td>
                </tr>
                <tr class="trwidth"><td></td>
                    <td class="dxtcLeftAlignCell">
                    </td>
                    <td></td><td></td></tr>
                <tr class="trwidth"><td>&nbsp;</td>
                    <td class="dxtcLeftAlignCell">
                        &nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>

                </tr>
                </table>

            </ContentTemplate>
        </asp:UpdatePanel>
代码背后的代码:

 protected void comboCountry_OnSelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
                SqlDataSource2.SelectCommand = "SELECT * FROM [location] where [country_id]=" +
                                               comboCountry.SelectedValue;
                comboCity.DataBind();
            }
            catch (Exception exception)
            {
                Debug.WriteLine(exception.Message);

}         }

1 个答案:

答案 0 :(得分:2)

因此,我认为标记没有任何问题 - 您是否在代码中设置了任何updatepanel属性?

另一种尝试可能是使用显式触发器声明或注册 - 例如

<asp:UpdatePanel runat="server" ID="updatePanel1" >
   <Triggers>
        <asp:AsyncPostBackTrigger ControlID="comboCountry" />
   </Triggers>
   ...

或等效代码,例如

ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(comboCountry);

您也可以尝试将这些组合框的ClientIDMode更改为AutoID或Predictive。