我有一个模型喜欢:
public class Post
{
public int PostId { get; set; }
public int ParentId { get; set; }
public string PostTitle { get; set; }
public IEnumerable<Post> ChildPosts { get; set; }
}
我的控制器中还有一个添加操作,它将上面的模型返回到 add.cshtml 视图。现在来点我的应用程序运行模式我得到一个异常(如数据库连接异常)。现在我想在 add.cshtml 页面中显示我的异常消息。
可能吗?如果是。我怎样才能完成这项工作。请用示例代码解释。