vote up 0 vote down star

Using ASP.net, how do you write ANSI characters to a text file?

I need to write this file's text to the web browser. Do they support ANSI?

flag

70% accept rate

2 Answers

vote up 1 vote down check

I don't do ASP, so I can't tell you how to do it exactly. But I believe most (all?) browsers do support ANSI plain text. You might return HTTP Content Type as text/plain, and send the text as the contents of your HTTP response.

link|flag
vote up 2 vote down

Use System.IO.StreamWriter.
It has an constructor that accepts the encoding:

FileStream fs = new FileStream(fileName,
            FileMode.CreateNew, FileAccess.Write, FileShare.None);
StreamWriter writer = 
            new StreamWriter(fs, System.Text.Encoding.ASCII);
link|flag

Your Answer

Get an OpenID
or

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