/**
 * @author Administrator
 */
$(function(){
    
    var articleID = $("#ArticleID").val();
    $.post("/WebManage/Article/ArticleAjax.aspx?temp" + Math.random(), {
        Type: "GetViewCount",
        ArticleID: articleID
    }, function(data){
        $("#PlayCount").text(data);
    });
    
    $.post("/WebManage/Article/ArticleAjax.aspx?temp" + Math.random(), {
        Type: "AddViewCount",
        ArticleID: articleID
    }, function(){
    
    });
});
