Returning plain text or other arbitary file in ASP

2020-08-19 07:05发布

If I were to respond to an http request with a plain text in PHP, I would do something like:

<?php 
    header('Content-Type: text/plain');
    echo "This is plain text";
?>

How would I do the equivalent in ASP.NET?

4条回答
女痞
2楼-- · 2020-08-19 07:24

Example in C# (for VB.NET just remove the end ;):

Response.ContentType = "text/plain";
Response.Write("This is plain text");

You may want to call Response.Clear beforehand in order to ensure there are no headers or content in the buffer already.

查看更多
Melony?
3楼-- · 2020-08-19 07:43

You should use Response property of Page class:

Response.Clear();
Response.ClearHeaders();
Response.AddHeader("Content-Type", "text/plain");
Response.Write("This is plain text");
Response.End();
查看更多
够拽才男人
4楼-- · 2020-08-19 07:47

If you only want to return plain text like that I would use an ashx file (Generic Handler in VS). Then just add the text you want to return in the ProcessRequest method.

public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "text/plain";
        context.Response.Write("This is plain text");
    }

This removes the added overhead of a normal aspx page.

查看更多
贼婆χ
5楼-- · 2020-08-19 07:47
Response.ContentType = "text/plain";
Response.Write("This is plain text");
查看更多
登录 后发表回答