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