示例#1
0
 public void OnHackedFailure(long hackerAccount)
 {
     HackingEngine.RegistraHackingAccount(long.Parse(txtAccountDaAprire.Text.Trim()), hackerAccount, false);
     lblFallimento.Visible = true;
 }
示例#2
0
 public void OnHackedFailure(long hackerAccount)
 {
     HackingEngine.RegistraHackingAccount((long)hackControl.IdentificatoreElemento, hackerAccount, false);
     pageViews.SetActiveView(viewAccountList);
     errorMessage.Visible = true;
 }
示例#3
0
 public void OnHackedSuccess(long hackerAccount)
 {
     HackingEngine.RegistraHackingAccount(long.Parse(txtAccountDaAprire.Text.Trim()), hackerAccount, true);
     Session["AccountInfranto"] = long.Parse(txtAccountDaAprire.Text.Trim());
     Response.Redirect("~/Hacking/HackedAccount.aspx");
 }
示例#4
0
 public void OnHackedSuccess(long hackerAccount)
 {
     HackingEngine.RegistraHackingAccount((long)hackControl.IdentificatoreElemento, hackerAccount, true);
     Session["AccountInfranto"] = (long)hackControl.IdentificatoreElemento;
     Response.Redirect("~/Hacking/HackedAccount.aspx");
 }