all groups > asp.net building controls > august 2005 >
You're in the

asp.net building controls

group:

Error when uploading file



Error when uploading file Nathan Sokalski
8/31/2005 5:11:07 PM
asp.net building controls: I am trying to write code to allow my users to upload a file. The code I am
using is as follows:

Dim upfilename As String = ""

If fileDetails.Value <> "" AndAlso fileDetails.PostedFile.ContentLength > 0
Then

Dim dir As String() =
fileDetails.PostedFile.FileName.Split("\".ToCharArray())

upfilename = dir(dir.GetUpperBound(0))

fileDetails.PostedFile.SaveAs(Server.MapPath("/eventdetails/") & upfilename)

End If


When I run this code, I recieve an error similar to the following:

Server Error in '/lvbeporgtest' Application.
--------------------------------------------------------------------------------

Could not find a part of the path "D:\Webdev_Site\eventdetails\resume.pdf".
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.DirectoryNotFoundException: Could not find a
part of the path "D:\Webdev_Site\eventdetails\resume.pdf".

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

Stack Trace:

[DirectoryNotFoundException: Could not find a part of the path
"D:\Webdev_Site\eventdetails\resume.pdf".]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +287
System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access,
FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean
bFromProxy) +888
System.IO.FileStream..ctor(String path, FileMode mode) +52
System.Web.HttpPostedFile.SaveAs(String filename) +48
createevent.btnSubmit_Click(Object sender, EventArgs e) in C:\Documents
and Settings\Nathan
Sokalski\VSWebCache\www.webdevlccc.com\lvbeporgtest\createevent.aspx.vb:114
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +108
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String
eventArgument) +57
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler
sourceControl, String eventArgument) +18
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
System.Web.UI.Page.ProcessRequestMain() +1292



--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300


I have used this same code before without any problems, what do I need to do
differently?

--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/

Re: Error when uploading file Chris
8/31/2005 5:18:33 PM
Is the file located there?
can you copy that path and get to your resume.pdf?

if so are you using windows 2003 server, if you are make sure that pdf is
allowed to be served in IIS.

[quoted text, click to view]

Re: Error when uploading file Nathan Sokalski
8/31/2005 8:41:11 PM
What do you mean is the file located there? I am uploading the file, not
downloading it, therefore, I do not expect it to be on the server while this
code is being executed. Thanks.
--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/

[quoted text, click to view]

AddThis Social Bookmark Button