The MIME-type should be text/plain. However, you should also give your file the .txt file extension, because IE ignores MIME-types, using instead the OS' file associations.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
What server-side language are you using to create the file? Here's a PHP example:
<?
header("Content-type: text/plain");
?>
You can provide a meta-tag, however, it may not work in all browsers. The proper way is to set the MIME-type in the HTTP headers (which is what PHP is doing, above), rather than in the HTML document itself. The meta-tag:
<META HTTP-EQUIV="Content-Type" CONTENT="text/plain">
That would go in the "head" section of your HTML.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
print "Content-Type: text/plain; charset=utf-8\n\n";
Put this before any page content.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37