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