Example #1
0
 public void changeSignUp()
 {
     bool status = bool.Parse(Request.Form["status"]);
     Account acc = new Account(this);
     acc.changeSignUp(status);
     Response.Write("success");
 }