我在面板中有一个Listview
下拉列表选项。我说我有Listview
的两页元素。在下拉列表中,我有ChoiceA
和ChoiceB
。
当我第一次执行时,它会显示ChoiceA
page1。我点击了列表底部的NEXT按钮。第2页显示ChoiceA
。我更改为ChoiceB
,ChoiceB
的第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);
}