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("");
        }

  

相关文章:

  • 2022-12-23
  • 2021-10-04
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
  • 2021-06-25
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
  • 2022-03-04
  • 2021-10-17
  • 2021-06-26
相关资源
相似解决方案