私の要件は、データベースからすべての国を表示することであり、国ごとにそれぞれの州を表示する必要があります。
したがって、すべての国を表示するには、DataList を使用しました。その `DataLIst の OnItemDataBound 関数 それぞれの状態を表示するためにグリッドビューをバインドしました。
ここで、データリストにある内側のグリッドビューにページネーションを付けたいと思います。
データリスト内にあるグリッドビューのページネーションを処理する方法がわかりません。
としてグリッドビューをバインドしました。
protected void dataListCountries_OnItemDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
HiddenField hdn = (HiddenField)e.Item.FindControl("hdnCountryID");
GridView grd = (GridView)e.Item.FindControl("grdDetails");
objCountries = new Countries();
lstCountries = objCountries.getallCountries();
grd.DataSource = lstCountries ;
grd.DataBind();
}
}
あなたのいずれかが私に解決策を提供してください。前もって感謝します。