Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I am trying to upload file in my site.but when I am trying to upload file, server does not upload file, However server got right filepath.This all code work nicely in local host. but this problem arise when I use this code for online site.

My code is here.

C#
string FileName = FileUploader.PostedFile.FileName;
string path = Server.MapPath("~/BookImages/");
FileUploader.SaveAs(path + FileName);
Posted
Updated 25-Jan-13 22:29pm
v2

1 solution

The first question which springs to mind is: why are you using the file name twice?

The second is probably a permissions problem - you need to give write permission on the BookImages folder on your host. (It doesn't matter on the development machine, because the permission is already given)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900