21 lines
595 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>错误页面</title>
</head>
<body>
<div style="border: 2px solid #ddd; padding: 5px; margin: 5px;">
<h3><span style="color: Red">错误信息详细内容</span></h3>
<p style="padding: 5px; margin: 5px; font-size: 12px;color:#666;">
@foreach (var stakerholder in ViewData["Message"] as Dictionary<string, string>)
{
<b>@stakerholder.Key</b>@stakerholder.Value;<br /><br />
}
</p>
</div>
</body>
</html>