ASP server error 500

Server Error in ‘/’ Application.

Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a “web.config” configuration file located in the root directory of the current web application. This tag should then have its “mode” attribute set to “Off”.

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the “defaultRedirect” attribute of the application’s configuration tag to point to a custom error page URL.

Normal aspx notifier.

generic so you can’t see what the problem is.

//pours gas on flaming server

yup…I just saw it too…I want to see their code!

Here is some code.

Public Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents File1 As System.Web.UI.HtmlControls.HtmlInputFile
Protected WithEvents Submit1 As System.Web.UI.HtmlControls.HtmlInputButton

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
    'CODEGEN: This method call is required by the Web Form Designer
    'Do not modify it using the code editor.
    InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    'Put user code to initialize the page here
End Sub

Private Sub Submit1_ServerClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Submit1.ServerClick

    If Not File1.PostedFile Is Nothing And File1.PostedFile.ContentLength > 0 Then
        Dim fn As String = System.IO.Path.GetFileName(File1.PostedFile.FileName)
        Dim SaveLocation as String = Server.MapPath("Data") & "\" & fn
        Try
            File1.PostedFile.SaveAs(SaveLocation)
            Response.Write("The file has been uploaded.")
        Catch Exc As Exception
            Response.Write("Error: " & Exc.Message)
        End Try
    Else
        Response.Write("Please select a file to upload.")
    End If

End Sub

End Class