protected void btnSaveAlert_Click(object sender, EventArgs e)
    {
        string EncID = appID.Value.Trim();
        int DecID = Convert.ToInt32(MyEncryption.Decrypt(EncID, "12345678910"));

       InvestmentDSTableAdapters.GetAlertTableAdapter InvApp = new InvestmentDSTableAdapters.GetAlertTableAdapter();
        InvApp.SaveInvAlert(alertmsg.Value,
                            DecID);
    }
    protected void btnSaveAlert_Click(object sender, EventArgs e)
    {
        string EncID = appID.Value.Trim();
        int    DecID = Convert.ToInt32(MyEncryption.Decrypt(EncID, "12345678910"));

        InvestmentDSTableAdapters.GetAlertTableAdapter InvApp = new InvestmentDSTableAdapters.GetAlertTableAdapter();
        InvApp.SaveInvAlert(alertmsg.Value,
                            DecID);
    }