在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输出内容的主要内容,如果未能解决你的问题,请参考以下文章

MVC和MVP的区别

asp.net MVC 框架中控制器里使用Newtonsoft.Json对前端传过来的字符串进行解析

asp.net mvc 加载慢

asp.net Mvc 使用NPOI导出Excel文件

log4net在Asp.net Mvc中的应用配置与介绍

MVC的model怎么设置默认值