Пример #1
0
    protected void AddProfessionButton_Click(object sender, EventArgs e)
    {
        try
        {
            bool confirmation = false;
            PRMS controller   = new PRMS();

            confirmation = controller.AddProfession(Profession.Text);

            if (confirmation)
            {
                Confirmation.Text = "Profession added successfully.";
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Profession was added successfully.')", true);
            }
            else
            {
                Confirmation.Text = "Error has occurred.";
            }
            Profession.Text = "";
        }
        catch (Exception)
        {
            ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert(‘Error occurred with adding a profession. Please contact customer support for assistance if this issue persists.’)", true);
        }
    }