Пример #1
0
    protected void btnSaveAlert_Click(object sender, EventArgs e)
    {
        string EncID = appID.Value.Trim();
        int    DecID = Convert.ToInt32(MyEncryption.Decrypt(EncID, "12345678910"));

        LoanDSTableAdapters.LoanApplicationsTableAdapter loanApp = new LoanDSTableAdapters.LoanApplicationsTableAdapter();
        loanApp.saveAlert(alertmsg.Value,
                          DecID);
    }
Пример #2
0
    protected void RemoveAlert()
    {
        string msg = this.pAlertmsg.InnerText;

        LoanDSTableAdapters.LoanApplicationsTableAdapter loanApp = new LoanDSTableAdapters.LoanApplicationsTableAdapter();
        loanApp.saveAlert("",
                          MySessionManager.AppID);
        LoanDSTableAdapters.AlertLogsTableAdapter alertLog = new LoanDSTableAdapters.AlertLogsTableAdapter();
        // LoanDS.AlertLogsDataTable tblAlertLog = alertLog.
    }
    protected void RemoveAlert()
    {
        string msg = this.pAlertmsg.InnerText; 
        LoanDSTableAdapters.LoanApplicationsTableAdapter loanApp = new LoanDSTableAdapters.LoanApplicationsTableAdapter();
        loanApp.saveAlert("",
                          MySessionManager.AppID);
        LoanDSTableAdapters.AlertLogsTableAdapter alertLog = new LoanDSTableAdapters.AlertLogsTableAdapter();
       // LoanDS.AlertLogsDataTable tblAlertLog = alertLog.


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

        LoanDSTableAdapters.LoanApplicationsTableAdapter loanApp = new LoanDSTableAdapters.LoanApplicationsTableAdapter();
        loanApp.saveAlert(alertmsg.Value, 
                          DecID);
    }