|
|
|
start date: Tue, 31 Jul 2007 07:13:58 -0700,
posted on: microsoft.public.dotnet.framework.aspnet
back
| Thread Index |
|
1
Martin
|
|
2
Eliyahu Goldin
|
|
3
Martin
|
|
4
Eliyahu Goldin
|
|
5
Patrice http://www.chez.com/scribe/
|
|
6
Martin
|
|
7
Patrice http://www.chez.com/scribe/
|
Content-Disposition attatchment question
I have a link in a page that allows the user to download a dynamically
created XLS file. I add these headers and everything works correctly -
as long as the .xls file is in the "home" folder.
AddHeader("Content-Disposition", "attachment; filename=MyFile.xls")
AddHeader("Content-type", "application/xls")
But, I would like to create the file in a sub-folder and send it out
from there. I've tried putting in a pathname like so:
filename=\subfolder\MyFile.xls but I can't get anything to work (the
response to the user is "File not found".
How can I get this to work?
Date:Tue, 31 Jul 2007 07:13:58 -0700
Author:
|
Re: Content-Disposition attatchment question
The name should be relative to your server application root.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Martin" wrote in message
news:bqgua3dp42ghvci7uhv8hl4jqcmcnsecm3@4ax.com...
>I have a link in a page that allows the user to download a dynamically
> created XLS file. I add these headers and everything works correctly -
> as long as the .xls file is in the "home" folder.
> AddHeader("Content-Disposition", "attachment; filename=MyFile.xls")
> AddHeader("Content-type", "application/xls")
>
> But, I would like to create the file in a sub-folder and send it out
> from there. I've tried putting in a pathname like so:
> filename=\subfolder\MyFile.xls but I can't get anything to work (the
> response to the user is "File not found".
>
> How can I get this to work?
Date:Tue, 31 Jul 2007 17:52:05 +0300
Author:
|
Re: Content-Disposition attatchment question
On Tue, 31 Jul 2007 17:52:05 +0300, "Eliyahu Goldin"
wrote:
>The name should be relative to your server application root.
That's what I'm doing. I created a sub-folder named XLSFiles in the
server root. That's where I'm creating the xls files.
Can you give me an example of the exact syntax to use?
Is it filename=\XLSFiles\MyFile.xls
Or filename=.\XLSFiles\MyFile.xls
Or filename=..\XLSFiles\MyFile.xls
Or filename=\XLSFiles/MyFile.xls
Or ...
I've tried everything I can think of - nothing works.
Date:Tue, 31 Jul 2007 08:31:49 -0700
Author:
|
Re: Content-Disposition attatchment question
It should be server application root, off the application virtual directory.
And the path will be
XLSFiles/MyFile.xls
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Martin" wrote in message
news:f6lua3pipiua6dii6qn1maucdb0r0hdfbl@4ax.com...
> On Tue, 31 Jul 2007 17:52:05 +0300, "Eliyahu Goldin"
> wrote:
>
>>The name should be relative to your server application root.
>
> That's what I'm doing. I created a sub-folder named XLSFiles in the
> server root. That's where I'm creating the xls files.
>
> Can you give me an example of the exact syntax to use?
>
> Is it filename=\XLSFiles\MyFile.xls
> Or filename=.\XLSFiles\MyFile.xls
> Or filename=..\XLSFiles\MyFile.xls
> Or filename=\XLSFiles/MyFile.xls
> Or ...
>
> I've tried everything I can think of - nothing works.
>
>
Date:Tue, 31 Jul 2007 18:37:03 +0300
Author:
|
Re: Content-Disposition attatchment question
IMO it could be unrelated. Content-disposition just suggests a name for the
downloaded file (it doesn't even have to be an existing file).
For now it's a bit unclear but it would make me rather think that the
problem is in the code that streams the file to the browser. This is where
the updated location should be taken into account.
---
Patrice
"Martin" a crit dans le message de news:
bqgua3dp42ghvci7uhv8hl4jqcmcnsecm3@4ax.com...
>I have a link in a page that allows the user to download a dynamically
> created XLS file. I add these headers and everything works correctly -
> as long as the .xls file is in the "home" folder.
> AddHeader("Content-Disposition", "attachment; filename=MyFile.xls")
> AddHeader("Content-type", "application/xls")
>
> But, I would like to create the file in a sub-folder and send it out
> from there. I've tried putting in a pathname like so:
> filename=\subfolder\MyFile.xls but I can't get anything to work (the
> response to the user is "File not found".
>
> How can I get this to work?
Date:Tue, 31 Jul 2007 17:41:52 +0200
Author:
|
Re: Content-Disposition attatchment question
I agree with what you're saying. Do you have any idea as to how I
would get the server to use a different location? It seems to be able
to find the created file only if I put it in the server's application
root directory.
I tried creating a virtual directory named XLSFiles but that made no
difference.
On Tue, 31 Jul 2007 17:41:52 +0200, "Patrice"
<http://www.chez.com/scribe/> wrote:
>IMO it could be unrelated. Content-disposition just suggests a name for the
>downloaded file (it doesn't even have to be an existing file).
>
>For now it's a bit unclear but it would make me rather think that the
>problem is in the code that streams the file to the browser. This is where
>the updated location should be taken into account.
>
>---
>Patrice
>
>"Martin" a crit dans le message de news:
>bqgua3dp42ghvci7uhv8hl4jqcmcnsecm3@4ax.com...
>>I have a link in a page that allows the user to download a dynamically
>> created XLS file. I add these headers and everything works correctly -
>> as long as the .xls file is in the "home" folder.
>> AddHeader("Content-Disposition", "attachment; filename=MyFile.xls")
>> AddHeader("Content-type", "application/xls")
>>
>> But, I would like to create the file in a sub-folder and send it out
>> from there. I've tried putting in a pathname like so:
>> filename=\subfolder\MyFile.xls but I can't get anything to work (the
>> response to the user is "File not found".
>>
>> How can I get this to work?
>
Date:Thu, 02 Aug 2007 05:14:27 -0700
Author:
|
Re: Content-Disposition attatchment question
If this is a virtual directory you'll have to user Server.MapPath to
transform this location into a physical server side directory. Using the
full absolute path of the file you can then use Response.WriteFile to stream
the file from this location .
For now you could just stream a sample text file directly to the browser
wihtout the content disposition header so that you can see whatever happens
includiong a possible error. Also try first to write down just the file
location so that you can check the absolute path is correct...
For now I would say that the file location is not correctly created
resulting in not finding the file...
--
Patrice
"Martin" a crit dans le message de news:
78i3b3hdffrj3c5j00pvc2e83vt3gcmlfp@4ax.com...
>I agree with what you're saying. Do you have any idea as to how I
> would get the server to use a different location? It seems to be able
> to find the created file only if I put it in the server's application
> root directory.
>
> I tried creating a virtual directory named XLSFiles but that made no
> difference.
>
>
>
> On Tue, 31 Jul 2007 17:41:52 +0200, "Patrice"
> <http://www.chez.com/scribe/> wrote:
>
>>IMO it could be unrelated. Content-disposition just suggests a name for
>>the
>>downloaded file (it doesn't even have to be an existing file).
>>
>>For now it's a bit unclear but it would make me rather think that the
>>problem is in the code that streams the file to the browser. This is where
>>the updated location should be taken into account.
>>
>>---
>>Patrice
>>
>>"Martin" a crit dans le message de news:
>>bqgua3dp42ghvci7uhv8hl4jqcmcnsecm3@4ax.com...
>>>I have a link in a page that allows the user to download a dynamically
>>> created XLS file. I add these headers and everything works correctly -
>>> as long as the .xls file is in the "home" folder.
>>> AddHeader("Content-Disposition", "attachment; filename=MyFile.xls")
>>> AddHeader("Content-type", "application/xls")
>>>
>>> But, I would like to create the file in a sub-folder and send it out
>>> from there. I've tried putting in a pathname like so:
>>> filename=\subfolder\MyFile.xls but I can't get anything to work (the
>>> response to the user is "File not found".
>>>
>>> How can I get this to work?
>>
>
Date:Fri, 3 Aug 2007 16:16:26 +0200
Author:
|
|
|