protected void btnAdd_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtProductId.Text))
            {
                strErr += "ProductId不是数字!\\n";
            }
            if (this.txtSuitName.Text == "")
            {
                strErr += "SuitName不能为空!\\n";
            }
            if (!PageValidate.IsDecimal(txtMerchantPrice.Text))
            {
                strErr += "MerchantPrice不是数字!\\n";
            }
            if (!PageValidate.IsDecimal(txtTradePrice.Text))
            {
                strErr += "TradePrice不是数字!\\n";
            }
            if (!PageValidate.IsNumber(txtStatus.Text))
            {
                strErr += "Status不是数字!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int     ProductId     = int.Parse(this.txtProductId.Text);
            string  SuitName      = this.txtSuitName.Text;
            decimal MerchantPrice = decimal.Parse(this.txtMerchantPrice.Text);
            decimal TradePrice    = decimal.Parse(this.txtTradePrice.Text);
            int     Status        = int.Parse(this.txtStatus.Text);

            NoName.NetShop.Model.SuitProductModel model = new NoName.NetShop.Model.SuitProductModel();
            model.ProductId     = ProductId;
            model.SuitName      = SuitName;
            model.MerchantPrice = MerchantPrice;
            model.TradePrice    = TradePrice;
            model.Status        = Status;

            NoName.NetShop.BLL.SuitProductModelBll bll = new NoName.NetShop.BLL.SuitProductModelBll();
            bll.Add(model);
        }