function b2_ListPage() 
{
//====改這裡，要讓後端產生資料的程式頁======================//
k0=document.getElementById('page_now').value;
a0_createXMLHttpRequest();
url="b2_ListPage.aspx?page_now="+k0
xmlHttp.onreadystatechange = b2_ListPageR
xmlHttp.open("GET", url, false);
xmlHttp.send(null);
//==========================================================//
}

function b2_ListPageR()
{//s1
if(xmlHttp.readyState == 4) 
{//s2
//alert ("4")
if(xmlHttp.status == 200)
{//s3
//alert ("200")

//====把XML回傳的資料秀在前端========================//
a1_FormList()
//===================================================//

}//s3
}//s2
}//s1

