Pergunta

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.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top