示例#1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            Rid.Value = string.IsNullOrEmpty(Request["id"]) ? "" : Request["id"];

            if (!string.IsNullOrEmpty(Rid.Value))
            {
                Maticsoft.BLL.customer   bll   = new Maticsoft.BLL.customer();
                Maticsoft.Model.customer model = bll.GetModel(Convert.ToInt32(Rid.Value));


                agent.Text        = model.agent;
                agenttel.Text     = model.agenttel;
                createdate.Text   = (model.createdate).ToString();
                customername.Text = model.customername;
                flag.Text         = model.flag;
                intention.Text    = model.intention;
                level.Text        = model.level;
                source.Text       = model.source;
                tel.Text          = model.tel;
                zygw.Text         = model.zygw;
            }
        }
    }
示例#2
0
    protected void delete_Click(object sender, EventArgs e)
    {
        int id = Convert.ToInt32(((LinkButton)sender).CommandArgument);

        Maticsoft.BLL.customer bll = new Maticsoft.BLL.customer();
        if (bll.Delete(id))
        {
            Maticsoft.Common.MessageBox.ShowAndRedirect(Page, "删除成功!", "get_customer.aspx");
        }
        else
        {
            Maticsoft.Common.MessageBox.Show(Page, "删除失败!");
        }
    }
示例#3
0
    protected void save_Click(object sender, EventArgs e)
    {
        Maticsoft.BLL.customer   bll   = new Maticsoft.BLL.customer();
        Maticsoft.Model.customer model = new Maticsoft.Model.customer();

        model.agent        = agent.Text;
        model.agenttel     = agenttel.Text;
        model.createdate   = Convert.ToDateTime(createdate.Text);
        model.customername = customername.Text;
        model.flag         = flag.Text;
        model.intention    = intention.Text;
        model.level        = level.Text;
        model.source       = source.Text;
        model.tel          = tel.Text;
        model.zygw         = zygw.Text;



        if (string.IsNullOrEmpty(Rid.Value))
        {
            if (bll.Add(model) > 0)
            {
                Maticsoft.Common.MessageBox.ShowAndRedirect(Page, "添加成功", "get_customer.aspx");
            }
            else
            {
                Maticsoft.Common.MessageBox.Show(Page, "添加失败");
            }
        }
        else
        {
            model.id = Convert.ToInt32(Rid.Value);
            if (bll.Update(model))
            {
                Maticsoft.Common.MessageBox.ShowAndRedirect(Page, "更新成功", "get_customer.aspx");
            }
            else
            {
                Maticsoft.Common.MessageBox.Show(Page, "更新失败");
            }
        }
    }