示例#1
0
 public function Delete()
 {
     $AgentPriceID = $this->_GET['AgentPriceID'];
     $Page = _intval($this->_GET['Page']);
     $AgentPriceModule = new AgentPriceModule();
     if ($AgentPriceModule->DeleteInfoByKeyID($AgentPriceID)) {
         $this->__Message('已完成删除操作!', UrlRewriteSimple($this->MyModule, 'Lists', true) . '&Page=' . $Page, '继续操作');
     } else {
         $this->__Message('删除失败,请再一次尝试!');
     }
 }