Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Why a comma appears in the file path?

this is the message:
Could not find a part of the path 'C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\10.0\,\intranet\IPPDRIVE\a\RecepcionMateriaPrima.xls'.


this is the code:
private void DownteFileFolder(string FolderNames)
{

            FileInfo file = new FileInfo(FolderNames);
            //if (file.Exists)
            {
                Response.Clear();
                Response.ClearHeaders();
                Response.ClearContent();
                Response.AddHeader("content-disposition", "attachment; filename=" + FolderNames);
                Response.AddHeader("Content-Type", "application/Excel");
                Response.ContentType = "application/vnd.xls";
                Response.AddHeader("Content-Length", file.ToString());
                //Response.AddHeader("Content-Length", file.Length.ToString());
                Response.WriteFile(file.FullName);
                //Response.WriteFile(file.FullName);
                Response.End();



you should see the following path:

C:\inetpub\wwwroot\intranet\IPPDRIVE\a\RecepcionMateriaPrima.xls
Posted
Updated 19-Dec-12 5:56am
v3
Comments
Adam R Harris 19-Dec-12 11:57am    
Whats in FolderNames? and where are you getting the value?

1 solution

Development server and iis are not the same. Set up your project to use local iis (supposing you have one). And Use MapPath[^] to IIP virtual paths to file system ones.
 
Share this answer
 

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



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