﻿// JScript 文件


function updateViewed(obj,articleId)
{
    $.ajax({
         type: "POST",
         url: "Viewed.ashx",
         dataType: "json",
         cache: false,
         data: "articleId=" + articleId,
         success: function(data, status) {
            
         }
     });

}

