페이징

-- Aspx // 네임스페이스 등록 -- CS using RashidPager; // 페이지당 행의 수 db.AddInParameter(dbCmd, "@PageSize", DbType.Int16, PagerSubmittedCase.RowPerPage); // 현재 페이지 Number db.AddInParameter(dbCmd, "@CurrentPage", DbType.Int16, PagerSubmittedCase.CurrentPageNo); // 총 데이터 수(return value) db.AddOutParameter(dbCmd, "@TotalCount", DbType.String, 5); // 총 데이터 수를 Pager 클래스의 TotalRow의 변수에 값을 배정한다 PagerSubmittedCase..
JaeYa_Lee
'페이징' 태그의 글 목록