Do yourself a favor and upload to the app_data folder. Only allow
registered users to upload. Create users folder in app_data folder manually.
try
if page.user.identity.isauthenticated then
Dim uname As String = Page.User.Identity.Name
'Create the member directory if it does not exist
MapPath = HttpContext.Current.Server.MapPath("~/app_data/users/"
& uname)
If Not System.IO.Directory.Exists(MapPath) Then
System.IO.Directory.CreateDirectory(MapPath)
End If
MapPath = HttpContext.Current.Server.MapPath("~/app_data/users/"
& uname &"/" & fileupload1.filename)
FileUpload1.PostedFile.SaveAs(MapPath)
....
end if
catch
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.