cedrick moloto

cedrick moloto

  • NA
  • 9
  • 648

path access denied

May 26 2022 1:14 PM

Good day 

please assisst i get the error access denied to the path, also note that i gave everyone full control rights on the folder. 

here is my code

if (e.CommandName == "Download")
                {
                    Response.Clear();
                    Response.ContentType = "application/octec-stream";
                    Response.AppendHeader("content-disposition", "filename" + e.CommandArgument);
                    Response.TransmitFile(Server.MapPath("~/POP") + e.CommandArgument);
                    Response.End();
                }


Answers (2)