たとえば、他のアプリケーションがURLをポーリングできるように、単純なサービスを作成したい
http://IP/serverstatus.aspx
そして、「html」ではなく、1行でステータスを取得します。しかし、それを出力するにはどうすればよいですか。現在、ファイルの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();
応答ヘッダーをプレーンテキストに設定します