Lấy 2 bài viết ở vị trí thứ 3:
int TotalRows = 0;
string WhereClause = String.Format("Id not in (Select Top 3 Id from TinTuc order by NgayCapNhat DESC) and TinNong = 1");
TList<TinTuc> TList_TinTuc = DataRepository.TinTucProvider.GetPaged(WhereClause, "NgayCapNhat DESC", 0, 2, out TotalRows);
dlTinMoiAll1.DataSource = TList_TinTuc;
dlTinMoiAll1.DataBind();
Lấy 2 bài viết ở vị trí đầu tiên:
string WhereClause = String.Format("Id not in (select Top 1 Id from TinTuc order by NgayCapNhat DESC) and TinNong = 1");
TList<TinTuc> TList_TinTuc = DataRepository.TinTucProvider.GetPaged(WhereClause, "NgayCapNhat DESC", 0, 2, out TotalRows);
dlTinMoiAll2.DataSource = TList_TinTuc;
dlTinMoiAll2.DataBind();