protected void Buttons_Command(object sender, CommandEventArgs e)
 {
     if (e.CommandArgument.ToString().Equals("DoResetPassword"))
     {
         DoResetPassword();
     }
     else if (e.CommandArgument.ToString().Equals("CancelResetPassword"))
     {
         CancelResetPassword();
     }
     else
     {
         DynamicMethodInvoker.InvokeBasicCommand(e.CommandArgument.ToString(), this);
     }
 }
Exemple #2
0
 protected void Buttons_Command(object sender, CommandEventArgs e)
 {
     DynamicMethodInvoker.InvokeBasicCommand(e.CommandArgument.ToString(), this);
 }