<%@ Page Language="vb" %>
<html>
<head>
<script runat="server">
Sub Page_Load()
Try
ThrowMeAnException
Catch HttpEx As HttpException
Message.Text = "ERROR:</br>"
Message.Text &= "Message: " & HttpEx.Message & "</br>"
Message.Text &= "Stack Trace: " & HttpEx.StackTrace & "</br>"
End Try
End Sub
Sub ThrowMeAnException()
Throw New HttpException("Threw an error from ThrowMeAnException")
End Sub
</script>
</head>
<body>
<asp:label id="Message" forecolor="red" runat="server"/>
</body>
</html>
|