Ejemplo n.º 1
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr="";
            if(!PageValidate.IsNumber(txtproperty_count.Text))
            {
                strErr+="财产数量格式错误!\\n";
            }

            if(strErr!="")
            {
                MessageBox.Show(this,strErr);
                return;
            }
            int property_ID=int.Parse(this.lblproperty_ID.Text);
            int virtualgoods_ID=int.Parse(this.lblvirtualgoods_ID.Text);
            string user_telphone=this.lbluser_telphone.Text;
            int property_count=int.Parse(this.txtproperty_count.Text);

            la.Model.ownvirtualgoods model=new la.Model.ownvirtualgoods();
            model.property_ID=property_ID;
            model.virtualgoods_ID=virtualgoods_ID;
            model.user_telphone=user_telphone;
            model.property_count=property_count;

            la.BLL.ownvirtualgoods bll=new la.BLL.ownvirtualgoods();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this,"保存成功!","list.aspx");
        }
Ejemplo n.º 2
0
 private void ShowInfo(int property_ID,int virtualgoods_ID,string user_telphone)
 {
     la.BLL.ownvirtualgoods bll=new la.BLL.ownvirtualgoods();
     la.Model.ownvirtualgoods model=bll.GetModel(property_ID,virtualgoods_ID,user_telphone);
     this.lblproperty_ID.Text=model.property_ID.ToString();
     this.lblvirtualgoods_ID.Text=model.virtualgoods_ID.ToString();
     this.lbluser_telphone.Text=model.user_telphone;
     this.txtproperty_count.Text=model.property_count.ToString();
 }
Ejemplo n.º 3
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr="";
            if(!PageValidate.IsNumber(txtproperty_ID.Text))
            {
                strErr+="财产ID格式错误!\\n";
            }
            if(!PageValidate.IsNumber(txtvirtualgoods_ID.Text))
            {
                strErr+="虚拟物品ID格式错误!\\n";
            }
            if(this.txtuser_telphone.Text.Trim().Length==0)
            {
                strErr+="用户Phone不能为空!\\n";
            }
            if(!PageValidate.IsNumber(txtproperty_count.Text))
            {
                strErr+="财产数量格式错误!\\n";
            }

            if(strErr!="")
            {
                MessageBox.Show(this,strErr);
                return;
            }
            int property_ID=int.Parse(this.txtproperty_ID.Text);
            int virtualgoods_ID=int.Parse(this.txtvirtualgoods_ID.Text);
            string user_telphone=this.txtuser_telphone.Text;
            int property_count=int.Parse(this.txtproperty_count.Text);

            la.Model.ownvirtualgoods model=new la.Model.ownvirtualgoods();
            model.property_ID=property_ID;
            model.virtualgoods_ID=virtualgoods_ID;
            model.user_telphone=user_telphone;
            model.property_count=property_count;

            la.BLL.ownvirtualgoods bll=new la.BLL.ownvirtualgoods();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this,"保存成功!","add.aspx");
        }