0

我已经使用更新面板在 asp.net webform 页面中进行部分回发,但不是部分加载,而是重新加载孔页面,我使用组合框通过 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);

} }

4

1 回答 1

2

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

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

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

或等效代码,例如

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

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

于 2013-01-09T06:48:42.053 回答