I have created a file with
XmlDocument xmldoc = new XmlDocument();
Can I make this file as downloadable? without saving it?
|
|
|
|
|
|
|
You could do something like:
|
||
|
|
|
You'll need to respond to a request for it, saving the document to the response. Of course, you'll need to be able to get the For an example of writing it out, within a normal
or
You can easily create a .ashx file and associated code-behind (new "Generic Handler" item) and then in the code-behind which implements
You may also want to set an appropriate content type (probably "text/xml" unless it's a specific XML format which you'd want to be interpreted differently) etc. If you want the client to default to saving it, you should set a content disposition. |
||
|
|
|
|
Differently from what Noldorin posted you don't have to create a Custom HTTP Handler. If you want to download the XML document created by the XmlDocument class, you can always save it directly to the stream, setting its content type to More or less like the following code:
|
||
|
|
|
This is how:
Don't forget to set response mime type and other relevant properties so client browser will understand it as a file download. |
||
|
|
|
|
You'll want to look at writing a Custom HTTP Handler (a class that implements Here's a basic example of how you might go about implementing one to return the markup for an
|
|||
|
|