// Parameter description: lblPostsCount: The total number of records, obtained by getActivityCount; iPageIndex: global variable, current number of pages
function getPage(page)
{
if(page==0)//Back to homepage
{
iPageIndex=1;
document.form1.PageCtl1_select.options[iPageIndex-1].selected="true"; //The drop-down box displays which page, the array starts from 0
getActivityList(1);
}
else if(page==11)//Back to the last page
{
iPageIndex= (lblPostsCount/6);
document.form1.PageCtl1_select.options[iPageIndex-1].selected="true";
getActivityList(iPageIndex);
}
else //Previous page, next page
{
iPageIndex=iPageIndex+page;
if(iPageIndex<=0) //If it is the first page and click the previous page, it is still left on the first page
iPageIndex=1;
else if(iPageIndex> (lblPostsCount/6))//If it is the last page, click the next page, and keep it on the last page
iPageIndex= (lblPostsCount/6);
else
{
document.form1.PageCtl1_select.options[iPageIndex-1].selected="true";
getActivityList(iPageIndex);//Call List of List
}
}
}
function getActivityCount() //get the number of records
{
var variable=['strWhere'];
var value=new Array(1);
value[0]="iStatus=2 and iPublic=5";
newRequest("getActivityCount",variable,value,getAllActivityCountShow);
beginRequest();
}
function getAllActivityCountShow()
{
var xmlhttp=xmlHttpRequest;
var str=;
var value=GetValue(str,"getActivityCountResult");
lblPostsCount=value; //Total number of records
document.form1.PageCtl1_select.length=0; //Initial drop-down box, pay the number of pages to the value value and text display of the drop-down box;
for(i=1;i<= (lblPostsCount/6);i++)
{
var option=("option");
=i;
=i;
document.form1.PageCtl1_select.(option);
}
}