﻿function GetOrdersinfo() {


  
    var orderinfo = AjaxReadData("AJAX/OrderInfo.aspx");

    
    if (orderinfo != "") {
        var array = orderinfo.split(",");
        //document.getElementById("topordershop").innerHTML = "<a href='Orders/OrdersList.aspx'>您购物车共<span id='topodrdrcount'>" + array[0] + "</span>件商品，需支付<span id='toporderordermqnq'>" + array[1] + "</span>元</a>";
         
         document.getElementById("topordershop").innerHTML = "<a href='Orders/OrdersList.aspx'><div class='sps'>购物车中有 <span>" + array[0] + "</span> 件商品</div>";
       
    }
    else {

        //document.getElementById("topordershop").innerHTML = "<a href='Orders/OrdersList.aspx'>您购物车共<span id='topodrdrcount'>0</span>件商品，需支付<span id='toporderordermqnq'>0</span>元</a>";
         document.getElementById("topordershop").innerHTML = "<a href='Orders/OrdersList.aspx'><div class='sps'>购物车中有 <span>0</span> 件商品</div><div class='gwimg'></a>";
     }
    

}
function search() {

  //  var list = document.getElementById("topprotype");
    //  var countTypeID = list.options[list.selectedIndex].value;
    var countTypeID = 0;
    var productName = document.getElementById("keys").value;

  
     location.href = "search/search.aspx?countTypeID=" + escape(countTypeID) + "&productName=" + escape(productName)



 }

 function GetbuttomInfo() {
     var info = AjaxReadData("AJAX/buttomInfo.aspx");
     document.getElementById("footer").innerHTML = info;
 }
