﻿function NewsClick(id) {
    var newscounturl = '/news/AddClickCount.aspx?ID=' + id.toString();
    $.ajax({ url: newscounturl,
        type: 'GET',
        dataType: 'html',
        timeout: 5000,
        error: function() {
        },
        success: function(res) {
        }
    });
}