我想创建一个简单的服务,以便其他应用程序可以轮询 url,例如
http://IP/serverstatus.aspx
并在一行中获取状态,没有“html”。但是我如何输出它,我目前正在读取文件的 c# 代码中的一个文件,并且它的内容将被输出。
像这样:
protected void Page_Load(object sender, EventArgs e)
{
Response.ContentType = "text/plain";
Response.Clear();
Response.WriteFile(Server.MapPath("yourfile.txt"));
}
尝试:
Response.Write("hello world");
Response.End();
将响应标头设置为纯文本