Beispiel #1
0
    protected void Ibnsave_Click(object sender, ImageClickEventArgs e)
    {
        DM_pixelTableAdapter dpixel = new DM_pixelTableAdapter();
        int addpixel = dpixel.InsertPixel(txtpixelid.Text, txtpixelname.Text, txtcommit.Text);

        if (addpixel > 0)
        {
            Response.Write("<script language=javascript>alert('温馨提示:\\n\\n手机像素类型添加成功!');</script>");
            txtpixelid.Text   = "";
            txtpixelname.Text = "";
            txtcommit.Text    = "";
            Response.Write("<script language=javascript>window.location.href='PixelAdd.aspx'</script>");
        }
        else
        {
            ScriptManager.RegisterStartupScript(this, GetType(), "", "alert('对不起!\\n\\n                          " + txtpixelname.Text + "添加失败!');", true);
        }
    }
Beispiel #2
0
    protected void Ibnsave_Click(object sender, ImageClickEventArgs e)
    {
        DM_pixelTableAdapter dpixel = new DM_pixelTableAdapter();
        int addpixel = dpixel.InsertPixel(txtpixelid.Text, txtpixelname.Text, txtcommit.Text);

        if (addpixel > 0)
        {
            Response.Write("<script language=javascript>alert('温馨提示:\\n\\n手机像素类型添加成功!');</script>");
            txtpixelid.Text = "";
            txtpixelname.Text= "";
            txtcommit.Text = "";
            Response.Write("<script language=javascript>window.location.href='PixelAdd.aspx'</script>");
        }
        else
        {
            ScriptManager.RegisterStartupScript(this, GetType(), "", "alert('对不起!\\n\\n                          " + txtpixelname.Text + "添加失败!');", true);
        }
    }