Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
528 B
Plaintext

<%@ Page language="c#" AutoEventWireup="false" %>
<script runat="server">
protected override void OnLoad( EventArgs args )
{
base.OnLoad(args);
// System.Theading.Thread.Abort (); // this won't call OnError.
throw new Exception();
}
protected override void OnError(EventArgs e)
{
base.OnError(e);
HttpContext.Current.Response.Redirect( "error.aspx" );
}
</script>
<html>
<head>
<title>Mono Bugs</title>
</head>
<body id="body">
<form method="post" runat="server" id="form">
</form>
</body>
</html>