문제

Can a viewmodel be passed to a custom error page?

Not sure if this is possible as the error page throws an exception.

public ActionResult ErrorPage()
    {
        throw new Exception();
    }

This would be useful so that I don't have to access the WorkContext within the errorPage view.

도움이 되었습니까?

해결책

You have access to Model.Message and Model.Exception from the template code, which is really all you need, given that you can create your own exception types.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top