Hi Team,
With reference to below link i want save a file on different serve path as below.
I am getting error like
Upload files, save in folder and display in ASP.Net GridView with Download and Delete option
Please look into this.
Have tried but getting same error.
FileUpload1.PostedFile.SaveAs(Server.MapPath("~") + @"http:\jungle.com\ImageProcessService\Images\" + fileName);
string savePath = WebConfigurationManager.AppSettings["Path"];
savePath = "~/" +savePath+""; FileUpload1.PostedFile.SaveAs((Server.MapPath(savePath) + fileName));
<add key="Path" value="192.168.150.78/ImageProcessService/Images/" />