在MVC里使用 HttpContext.Response输出内容
Posted 计划着变化的计划
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在MVC里使用 HttpContext.Response输出内容相关的知识,希望对你有一定的参考价值。
public ActionResult About() { byte[] ss = System.Text.Encoding.UTF8.GetBytes("111122"); HttpContext.Response.OutputStream.Write(ss, 0, ss.Length); HttpContext.Response.ContentType = "text/plain"; HttpContext.Response.End(); return Content(""); }
以上是关于在MVC里使用 HttpContext.Response输出内容的主要内容,如果未能解决你的问题,请参考以下文章