你好傢伙這是我的產品顯示頁面。我已經包含了Datapager控件。 所有的產品都顯示在單頁...但顯示數據尋呼機不顯示
頁面這裏是我的代碼之間導航在不尋呼機控制....需要幫助解決這個代碼
<asp:ListView runat="server" ID="listView" GroupItemCount="4">
<LayoutTemplate>
<div style="width: 650px;">
<asp:PlaceHolder runat="server" ID="groupPlaceHolder" />
</div>
</LayoutTemplate>
<GroupTemplate>
<div style="clear: both;">
<asp:PlaceHolder runat="server" ID="itemPlaceHolder" />
</div>
</GroupTemplate>
<ItemTemplate>
<div class="productItem">
<img src='<%# Eval("p_location") %>' height="120" width="120" alt="Not found" />
<div>
<b>
<%# Eval("p_name") %></b></div>
<div>
Price: $<%# Eval("p_price") %></div>
</div>
</ItemTemplate>
<ItemSeparatorTemplate>
<div class="itemSeparator">
</div>
</ItemSeparatorTemplate>
<GroupSeparatorTemplate>
<div class="groupSeparator">
</div>
</GroupSeparatorTemplate>
</asp:ListView>
<div class="datapager">
<asp:DataPager ID="DataPager1" PageSize="8" PagedControlID="listView" runat="server">
<Fields>
<asp:NextPreviousPagerField ButtonType="Button" />
</Fields>
</asp:DataPager>
</div>
代碼隱藏c#:
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("ConnectionString");
conn.Open();
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM p_detail", conn);
DataTable dt = new DataTable();
da.Fill(dt);
conn.Close();
listView.DataSource = dt;
listView.DataBind();
}
是不顯示的數據,在全部或只是當你點擊頁面的事件? – polin 2013-03-23 06:39:39
它在單個頁面中顯示所有數據,但頁面控制不顯示用於在頁面之間導航 – John 2013-03-23 06:52:44