Example #1
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (!Page.IsValid)
        {
            return;
        }
        SeedMoney a        = new SeedMoney();
        Business  b        = new Business();
        string    category = DropDownListAuthorType.SelectedValue.Trim();

        a.Entrytype = category;
        double Amount = Convert.ToDouble(txtAmount.Text.Trim());

        a.Budget = Amount;
        int result = b.InsertSeedMoneyBudget(a);

        if (result >= 1)
        {
            string CloseWindow = "alert('Seed Money Category  value  saved  succesfully for: " + DropDownListAuthorType.SelectedItem + "')";
            ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "CloseWindow", CloseWindow, true);
        }
        else
        {
            string CloseWindow = "alert('Error!')";
            ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "CloseWindow", CloseWindow, true);
        }
    }
Example #2
0
    protected void txtAmount_TextChanged(object sender, EventArgs e)
    {
        try{
            SeedMoney a        = new SeedMoney();
            Business  b        = new Business();
            string    category = DropDownListAuthorType.SelectedValue.Trim();
            a.Entrytype = category;
            double Amount = Convert.ToDouble(txtAmount.Text.Trim());
            a.Budget = Amount;
            int result = b.getSeedMoneyBudgetExist(a);

            if (result != 0)
            {
                ClientScript.RegisterStartupScript(Page.GetType(), "validation1", "<script language='javascript'>alert(' Category Amount Already exists!')</script>");
                Button1.Enabled = false;
                return;
            }

            else
            {
                Button1.Enabled = true;
                //ClientScript.RegisterStartupScript(Page.GetType(), "validation1", "<script language='javascript'>alert(' New User!')</script>");
                return;
            }
        }

        catch (Exception ex)
        {
            log.Error(ex.StackTrace);
            log.Error(ex.Message);

            log.Error("Error!!!!!!!!!!!!!!!! ");
            if (ex.Message.Contains("DDLdeptname' has a SelectedValue which is invalid because it does not exist in the list of"))
            {
                ClientScript.RegisterStartupScript(Page.GetType(), "validation1", "<script language='javascript'>alert('Error!!Institue_Department Map error!!!')</script>");
            }

            else
            {
                ClientScript.RegisterStartupScript(Page.GetType(), "validation1", "<script language='javascript'>alert('Error!!!!!!!!!!')</script>");
            }
        }
    }