Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a csv file from a textbox and then send it to the user. This is my code so far:

Response.Clear();
            Response.ContentType = "text/csv";
            Response.AppendHeader("Content-Disposition",
                string.Format("attachment; filename={0}", DateTime.Now));

            Response.Write(TextBox_Data.Text);
            Context.Response.End();

What is sent is an empty xml file, I have never tried responding with a file before and I'm wondering why it does this?

I have also tried the following which did not work:

var writer = File.CreateText("C:\\file.csv");
            writer.WriteLine(TextBox_Data.Text);

            Context.Response.Clear();
            Context.Response.AppendHeader("content-disposition", "attachment; filename=" + DateTime.Now + ".csv");
            Context.Response.ContentType = "text/csv";
            Context.Response.Write("C:\\file.csv");
            Context.Response.Flush();
            Context.Response.End();

Let me know if you have the answer :)

share|improve this question
You are trying to create a CSV file from what a user puts in a text box, and then email it to the user, or have the user automatically download it? Can you give us a little more context for the how and why beyond this code? – Jennifer S Sep 14 '11 at 14:00
Try writing to a different path. Perhaps to your profile path. Writing to your root is dangerous. – AmitApollo Sep 14 '11 at 14:09
Indeed, I am trying to make a downloadable CSV file from a multiline textbox :) Actually I don't care about putting the file on my drive, I just want a downloadable CSV file, with the text from the textbox. – Xeano Sep 14 '11 at 14:30
Writing to the root is not only dangerous, but unless you have explicitly given permission to your app pool identity to do so, it will fail for security reasons – Chris Lively Sep 14 '11 at 15:12
Another sidenote is that the tostring() of datetime creates a string with a space. The space makes the file lose it's type (also loses the hours and minutes of the datetime. – Xeano Sep 17 '11 at 8:44

1 Answer

up vote 3 down vote accepted

The following code worked for me. You may just be missing a file extension.

Response.Clear();
Response.ContentType = "text/csv";
Response.AppendHeader("Content-Disposition",
                string.Format("attachment; filename={0}.csv", DateTime.Now));
Response.Write(TextBox_Data.Text);
Context.Response.End();
share|improve this answer
Keep in mind this code will not take care of things like escape characters but I assume that's what you're expecting. – joshb Sep 14 '11 at 14:48
ahh... I wrote the extension like this ("attachment; filename={0}", DateTime.Now+".csv")); This works perfectly from my home pc, Thanks a lot! – Xeano Sep 14 '11 at 16:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.