执行更改时,更新面板,数据绑定未刷新到第一页

时间:2014-01-29 21:12:13

标签: c# asp.net listview panel

我在面板中有一个Listview下拉列表选项。我说我有Listview的两页元素。在下拉列表中,我有ChoiceAChoiceB

当我第一次执行时,它会显示ChoiceA page1。我点击了列表底部的NEXT按钮。第2页显示ChoiceA。我更改为ChoiceBChoiceB第2页正在显示。我希望ChoiceB的page1出现。我错了,或者这是假设工作的方式?

这是代码

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    int indexDdl = DropDownList1.SelectedIndex;
    indexDdl++;
    Session["carId"] = indexDdl;
    DropDownList1.PageIndex =0;  <== this is not existing for a dropdownlist (it is for gridview)

    ListAppointement(indexDdl);
}

0 个答案:

没有答案