<%
set conn=server.createobject("adodb.connection")
conn.open""
sql2=""
set rs2=server.createobject("adodb.recordset")
rs2.open sql2,conn,3,1
rs2.pagesize="10"
ipage=request.querystring("page")
if ipage=""then
rs2.absolutepage=1
else rs2.absolutepage=ipage
end if
icount=1
do while not rs2.eof and icount<=rs2.pagesize
rs2.movenext
icount=icount+1
loop
with response
icount=((ipage\10)*10)+1
ifin=icount+9
do while icount<=ifin and icount<=rs2.pagecount
icount=icount+1
loop
end with
%>
กำหนดให้แสดงข้อมูลหน้าละ 10 record ได้แล้วอยากจะให้แสดงแถวละ 2 record ทั้งหมด 5 แถวจะเพิ่มโค้ดยังไงดีคะ