C
Chicagoboy27
All I am trying to specify a location for the file to be saved in.
currently I have a process that get the location of the file and then
prompts the user to save it in a directory. I am wondering if it is
possible to specify that directory on their system. Our clients would
have this directory on their system already....
here is the code that I am currently using
Response.ContentType = "application/zip";
Response.AppendHeader("Content-Disposition", "attachment;
filename=myzipfile.zip");
Response.WriteFile(@"C:\somedirectoy\somefile.zip");
Response.Flush();
Thanks in advance
currently I have a process that get the location of the file and then
prompts the user to save it in a directory. I am wondering if it is
possible to specify that directory on their system. Our clients would
have this directory on their system already....
here is the code that I am currently using
Response.ContentType = "application/zip";
Response.AppendHeader("Content-Disposition", "attachment;
filename=myzipfile.zip");
Response.WriteFile(@"C:\somedirectoy\somefile.zip");
Response.Flush();
Thanks in advance