function AddCart(id)
{
     var html = $.ajax({
            url: "../Handler.ashx?Action=AddCart&id="+id,
            cache: false,
            async: false
            }).responseText; 
        //   alert(html);
    if(html=="1"){
        alert('商品已加入购物车！');
    }
}
