% CatNo = Request.QueryString("catno") If IsEmpty(CatNo) Or IsNull(CatNo) Then CatNo = 1 End If CatInfo = EC_GetCategory(CatNo) CatName = CatInfo(1) CardCatInfo = EC_GetCategories(0) PageSize = 9 Page = Request.QueryString("page") If IsNull(Page) Or IsEmpty(Page) Then Page = 1 End If CardList = EC_GetCardsByPage(CatNo,PageSize,Page) If IsArray(CardList) Then TmpCardInfo = CardList(0) RecordCount = TmpCardInfo(11) PageCount = TmpCardInfo(12) Else RecordCount = 0 PageCount = 0 End If %>