﻿// JScript 文件
var _PageSize = 5;
var xmlHttp_Ajax_Wiki_Info_Comment;

//Wiki 点评数据
function Ajax_Wiki_Info_Comment(){
    if(window.ActiveXObject){
        xmlHttp_Ajax_Wiki_Info_Comment = new ActiveXObject("Microsoft.XMLHTTP");
    }else{
        xmlHttp_Ajax_Wiki_Info_Comment = new XMLHttpRequest();
    }
    var AjaxUrl = Virtual_Path_Wiki + "AjaxService.koc?Type=Ajax_Wiki_Info_Comment_List&wid=" + document.getElementById("txtGUID").value + "&PageSize=" + _PageSize; 
    xmlHttp_Ajax_Wiki_Info_Comment.onreadystatechange = Ajax_Wiki_Info_Comment_OnComplete;
    xmlHttp_Ajax_Wiki_Info_Comment.open("GET",AjaxUrl,true);
    xmlHttp_Ajax_Wiki_Info_Comment.send(null);
}

function Ajax_Wiki_Info_Comment_OnComplete(){
    if(xmlHttp_Ajax_Wiki_Info_Comment.readyState == 4){
        if(xmlHttp_Ajax_Wiki_Info_Comment.status == 200)
        {
            var obj = document.getElementById("spanWiki_Topics");
            obj.innerHTML = xmlHttp_Ajax_Wiki_Info_Comment.responseText;
        }else{
            var obj = document.getElementById("spanWiki_Topics");
            obj.innerHTML = "获取点评列表时发生错误！";
        }
    }
}