我在使用 C# asp.net listview 时遇到了这个奇怪的问题,我无法确定确切的原因和问题。这是场景
我有一个使用 AutoCompleteExtender 的搜索文本框。在 PageLoad() 中,列表视图将填充从 DataTable 中提取的一堆数据。当有人在文本框中输入内容时,从 web 服务获取结果,将结果填充到 DataTable 中,listview 将绑定到 DataTable。
一切正常 - listview 绑定正常,DataPager 最初工作正常。在列表视图的第一页,如果用户输入搜索,列表视图将绑定并显示新结果。
但是,当我在第二页或更多时,listview 绑定但显示 EmptyDataTemplate。我检查了 DataTable 并确定它在 listview.DataBind 之前填充了新数据。只有当我离开列表视图的第 1 页时才会出现问题。
ASPX
<asp:ListView ID="productList" runat="server" onitemcommand="productList_ItemCommand" DataKeyNames="PrimaryID">
<LayoutTemplate>
<table>
<tr runat="server">
<th runat="server">Actions</th>
<th runat="server">PrimaryID</th>
<th runat="server">Product</th>
<th runat="server">Description</th>
</tr>
<tr runat="server" id="itemPlaceholder" />
</table>
<asp:DataPager runat="server" ID="productDataPager" PageSize="20" PagedControlID="productList" QueryStringField="pageNumber">
<Fields>
<asp:NextPreviousPagerField ButtonType="Image" ShowFirstPageButton="true" ShowNextPageButton="false" ShowPreviousPageButton="false" FirstPageText="|<< " />
<asp:NumericPagerField ButtonCount="10" />
<asp:NextPreviousPagerField ButtonType="Image" ShowLastPageButton="true" ShowNextPageButton="false" ShowPreviousPageButton="false" LastPageText=" >>|" />
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<tr id="Tr1" class="even" runat="server">
<td>
<asp:LinkButton ID="EditButton" runat="Server" Text="Edit" CommandName="Edit_product"/>
</td>
<td">
<asp:Label ID="primarylbl" runat="Server" Text='<%#Bind("PrimaryID") %>' />
</td>
<td>
<asp:Label ID="productlbl" runat="Server" Text='<%#Bind("Product") %>' />
</td>
<td>
<asp:Label ID="descriptionlbl" runat="Server" Text='<%#Bind("Description") %>' /> </td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr id="Tr1" class="odd" runat="server">
<td>
<asp:LinkButton ID="EditButton" runat="Server" Text="Edit" CommandName="Edit_product"/>
</td>
<td>
<asp:Label ID="primarylbl" runat="Server" Text='<%#Bind("PrimaryID") %>' />
</td>
<td>
<asp:Label ID="productlbl" runat="Server" Text='<%#Bind("Product") %>' />
</td>
<td>
<asp:Label ID="descriptionlbl" runat="Server" Text='<%#Bind("Description") %>' />
</td>
</tr>
</AlternatingItemTemplate>
<EmptyDataTemplate>
No Records Found
</EmptyDataTemplate>
</asp:ListView>
代码隐藏
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string productkey = "0";
getWeb(productkey); //call WebService to get all Products
}
}
private void createTable(Products[] product)
{
DataTable productTable = new DataTable();
productTable.Columns.Add(new DataColumn("PrimaryID", typeof(string)));
prouctTable.Columns.Add(new DataColumn("Product", typeof(string)));
productTable.Columns.Add(new DataColumn("Description", typeof(string)));
for (int i = 0; i < product.Length; i++)
{
DataRow dr = productTable.NewRow();
dr["PrimaryID"] = product[i].PrimaryID.ToString();
dr["Product"] = product[i].Product.ToString();
dr["Description"] product[i].Description.ToString();
productTable.Rows.Add(dr);
productTable.AcceptChanges();
}
bindtoList(productTable);
protected void bindtoList(DataTable prodTab)
{
if (productList.DataSource == null)
{
productList.DataSource = prodTab;
productList.DataBind();
Updatepanel1.Update();
}
else
{
productList.DataSource = null;
productList.DataSource = proTab;
productList.DataBind();
}
if (prodTab.Rows.Count > 20)
{
((DataPager)productList.FindControl("productDataPager")).Visible = true;
}
else
{
if (((DataPager)productList.FindControl("productDataPager")) != null && ((DataPager)productList.FindControl("productDataPager")).Visible == true)
{
((DataPager)productList.FindControl("productDataPager")).Visible = false;
}
}
}