我们可以自定义系统错误模板, 编辑 IWError.html 放到模板文件夹后, 它将替换默认的模板.
{在主页面, 这是要模拟一个系统错误} procedure TIWForm1.IWButton1Click(Sender: TObject); beginRelease; end;
修改前后的 IWError.html 对比:

我想办法抠出了 IWError.html 源文件, 从里面可以了解到更多关于模板的问题:
{%APPNAME%}
An unhandled application error has occured within {%APPNAME%}
{%EXCEPTIONSPECIFIC%}
Click here to restart {%APPNAME%}
Please note that depending on the actual exception that occured, restarting the application might not be possible. If this is the case, please report the error message to the administrator.
IWShowMessage.html(默认信息模板) 和 IWException.html(默认异常模板) 的内嵌标签有: {%textMessage%}、{%butnOk%}
IWError.html(默认错误模板) 的内嵌标签有: {%CONTENT%}, {%AppName%}, {%AppID%}, {%ATOZEDLOGO%}, {%IntraWebLOGO%}, {%APPADDRESS%}, {%EXCEPTIONSPECIFIC%}
关于模板的最新参考: http://www.atozed.com/intraweb/docs/Layout/HTMLTemplates.aspx