我这样写语句
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim file As HttpPostedFile = fileup.PostedFile
        If file.ContentLength <> 0 Then
            msg.Text = "大小:" & file.ContentLength
            msg.Text &= "<br>类型:" & file.ContentType
            msg.Text &= "<br>名称" & file.FileName
            Dim file_name() As String = Split(file.FileName, "\")
            Dim filename As String = file_name(file_name.Length - 1)
            file.SaveAs(Server.MapPath("") & "\upload\" & filename)
        End If    End Sub   我试了一下 点个图片传 显示
“/WebApplication”应用程序中的服务器错误。
--------------------------------------------------------------------------------未找到路径“c:\inetpub\wwwroot\WebApplication\upload\1.jpg”的一部分。
为什么呢?怎么解决,大家帮帮我啊。饿了,先吃饭吃完回来看大家的解答啊。先谢谢了。