這是我有: comments_controller.php if (empty($result)) { //$result is empty if comment does not exist
$this->cakeError('error404', array('message'=>'Comment not found'));
} elseif ($result['spam'] ==
在我的web.config中的customErrors標記中,我指向一個控制器。在我的控制器中,我重定向到由多個應用程序共享的外部錯誤頁面。 <customErrors defaultRedirect="~/Error/ServerError" mode="On"> 我的控制器: public class ErrorController : Controller
{
public A
我爲我的ASP.NET 4應用程序製作了自定義錯誤頁面。我將異常對象放在HttpContext.current.Session["CustomError"]中,但是當用戶重定向到錯誤頁面HttpContext.current.Session["CustomError"]時是null。 我這樣做是在CustomError類的構造函數是這樣的: public CustomError(enExcepti