0

我想创建一个简单的服务,以便其他应用程序可以轮询 url,例如

http://IP/serverstatus.aspx

并在一行中获取状态,没有“html”。但是我如何输出它,我目前正在读取文件的 c# 代码中的一个文件,并且它的内容将被输出。

4

3 回答 3

2
  • 设置内容类型
  • 清除响应(我认为这是可选的)
  • 写入响应
  • 确保您的 ASPX 文件为空

像这样:

protected void Page_Load(object sender, EventArgs e)
{
    Response.ContentType = "text/plain";
    Response.Clear();
    Response.WriteFile(Server.MapPath("yourfile.txt"));
}
于 2012-10-05T12:54:24.883 回答
0

尝试:

Response.Write("hello world");
Response.End();
于 2012-10-05T12:53:46.840 回答
0

将响应标头设置为纯文本

于 2012-10-05T12:50:51.013 回答