0

当我更改下拉列表的值时,GridView 不会改变这是我的代码:

下拉列表:

<table>
<tr>
    <td style="height: 49px"><asp:Label ID="Label1" runat="server" >Etablissement</asp:Label>
    </td>
    <td style="height: 49px">
        <asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource2" DataTextField="NOM_ETABL" DataValueField="CD_ETAB" AutoPostBack="true" OnSelectedIndexChanged="DropDownList1_TextChanged" />
    </td>
    <td>
        <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionAREF %>" SelectCommand="getPrescolaireEtablissement" SelectCommandType="StoredProcedure" />
    </td>
</tr>
</table>

网格视图:

<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1">          
</asp:GridView>

<div id="footer">
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionAREF %>" SelectCommand="getPreInscriptionPublic" SelectCommandType="StoredProcedure">
    <SelectParameters>
        <asp:ControlParameter ControlID="DropDownList1" Name="CD_ETAB" PropertyName="SelectedValue" Type="String" />
        <asp:Parameter Name="afficher" Type="Boolean" DefaultValue="true" />
    </SelectParameters>
</asp:SqlDataSource>
</div>

代码隐藏:

protected void DropDownList1_TextChanged(object sender, EventArgs e)
{
    GridView1.DataBind();
}
4

2 回答 2

1

在调用 DataBind 方法之前,再次尝试设置 GridView1.DataSource。

于 2013-05-07T16:04:34.157 回答
0

我认为您不需要在回发期间在网格上调用 DataBind() 。尝试只使用一个空的下拉事件接收器。

于 2013-05-07T17:54:33.487 回答