Exemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.id    = AXRequest.GetQueryInt("id");
     this.title = AXRequest.GetQueryString("title");
     quantity   = AXRequest.GetQueryInt("quantity");
     price      = AXRequest.GetQueryFloat("price", 0);
     if (!Page.IsPostBack)
     {
         BLL.shop_log bll       = new BLL.shop_log();
         string       _strWhere = " user_id=" + userModel.id;
         string       _orderby  = "";
         this.rptList.DataSource = bll.GetShopList(_strWhere, _orderby);
         this.rptList.DataBind();
     }
 }