示例#1
0
 protected function lnkAddContact_Click()
 {
     QApplicationBase::Redirect('peopledetails_list.php');
 }
示例#2
0
 protected function Register_Click($strFormId, $strControlId, $strParameter)
 {
     $encrypt = new encrypt();
     $this->txtPassword->Text = $encrypt->encrypt_sha1($this->txtPassword->Text);
     $this->objMember = new Memberdetails();
     $this->objMember->FullName = $this->txtFullName->Text;
     $this->objMember->MemberId = $this->txtMemberId->Text;
     $this->objMember->Password = $this->txtPassword->Text;
     $this->objMember->Active = false;
     $this->objMember->Save();
     QApplicationBase::Redirect('index.php');
 }
示例#3
0
 protected function Home_Click()
 {
     QApplicationBase::Redirect('index.php');
 }