Esempio n. 1
0
 protected void nextButton_Click(object sender, EventArgs e)
 {
     ActivateValidators();
     Validate();
     if (!IsValid)
     {
         return;
     }
     if (lblErrorSSN.Visible)
     {
         if (!Data.account_allow_duplicate_ssn(session_id, ViewState["Selected_Account_Number"].ToString(), txtSSN.TextWithLiterals).Equals("1"))
         {
             return;
         }
     }
     if (!string.IsNullOrEmpty(lblErrorProcessingYear.Text))
     {
         return;
     }
     if (!string.IsNullOrEmpty(lblError60Days.Text))
     {
         return;
     }
     if (DoSave())
     {
         Response.Redirect(TabStrip1.NextURL());
     }
 }
Esempio n. 2
0
 protected void nextButton_Click(object sender, EventArgs e)
 {
     Validate();
     if (!IsValid)
     {
         return;
     }
     if (DoSave())
     {
         Response.Redirect(TabStrip1.NextURL());
     }
 }
 protected void nextButton_Click(object sender, EventArgs e)
 {
     Response.Redirect(TabStrip1.NextURL());
 }