我已经使用更新面板在 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> </td>
<td class="dxtcLeftAlignCell">
</td>
<td> </td>
<td> </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);
} }