当我在 IIS(6.0) 上的 ASP.Net(3.5) 站点出现应用程序错误时,我得到了肮脏的 HTML 代码。
我想使用自动生成的 XHTML 代码,这对于解析答案的 Web 服务会很好......(我对编写自定义页面不感兴趣)。
有没有办法指定它?
编辑:示例
例如,为 404 错误生成的页面,我想要干净的 XHTML 代码,但我不想自己编写,ASP.Net 模块可以做到吗?
<html>
<head>
<title>La ressource est introuvable.</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style>
</head>
<body bgcolor="white">
<span><H1>Erreur du serveur dans l'application '/</b>/MyVirtualDirectory'.<hr width=100% size=1 color=silver></H1>
<h2> <i>La ressource est introuvable.</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description : </b>HTTP 404. ...
<br><br>
<b> URL demandée: </b>/MyVirtualDirectory/MyService.aspx<br><br>
<hr width=100% size=1 color=silver>
<b>Informations sur la version :</b> Version Microsoft .NET Framework :2.0.50727.3053; Version ASP.NET :2.0.50727.3634
</font>
</body>
</html>
编辑
我想,上面的 HTML 是由 ASPX 页面生成的,有没有地方可以找到它?为了获得灵感并将其翻译成 XHTML,我将使用@Remko 3rd 解决方案来指定自定义错误页面。