You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ErrorMessage.cshtml 595 B

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