﻿

//列表页初始
function ChildListInit(pageIndex)
{
    var sortID = QueryString("sortID");
    CreateXmlHttp();   
    xmlHttp1=xmlHttp;
    var url = "Child_Process.aspx?action=ShowList&sortID="+ sortID +"&pageIndex="+pageIndex;
    if(IsValid(url)){return;}//防sql注入
    xmlHttp1.open("GET", url, true);
    xmlHttp1.onreadystatechange = function()
    {
        if (xmlHttp1.readyState == 4)
        { 
            //var strHtml = xmlHttp1.responseText.split("<# 5izd #>");
           // $("middle").innerHTML = strHtml[0];       
            //$("webPosition").innerHTML = strHtml[1];
             $("middle").innerHTML = xmlHttp1.responseText;
        }
    }
    xmlHttp1.send(null); 
}  


