码迷,mamicode.com
首页 > Windows程序 > 详细

C#开发web程序中关于 一般处理程序中的context.Response.ContentType = "text/plain"

时间:2017-06-09 22:23:56      阅读:5715      评论:0      收藏:0      [点我收藏+]

标签:ashx 一般处理程序 c#

简单的静态页面calculator.html:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form action="Handlers/CalculaterHandler.ashx" method="post" >
        <input  type="text" name="number1"/>+<input type="text" name="number2" />=<input type="text" name="result" />
        <input type="submit" name="btnSubmit" value="计算"/>
    </form>
</body>
</html>

加上一般处理程序CalculatorHandler.ashx:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebDemo.Handlers
{
    /// <summary>
    /// CalculaterHandler 的摘要说明
    /// </summary>
    public class CalculaterHandler : IHttpHandler
    {
       

        public void ProcessRequest(HttpContext context)
        {
        
            //context.Response.ContentType = "text/plain";
            context.Response.ContentType = "text/html";
            string num1 = context.Request.Params["number1"];
            string num2 = context.Request.Params["number2"];
            int result = Convert.ToInt32(num1) + Convert.ToInt32(num2);
            //context.Response.Write(num1 +"+"+num2+"="+result);
            string html = @"<!DOCTYPE html ><html xmlns=‘http://www.w3.org/1999/xhtml‘>
            <head><meta http-equiv=‘Content-Type‘ content=‘text/html; charset=utf-8‘/>
    <title></title>
</head>
<body>
    <form action=‘Handlers/CalculaterHandler.ashx‘ method=‘post‘ >
        <input  type=‘text‘ name=‘number1‘ value=‘" + num1
                                                   + @"‘ />+<input type=‘text‘ name=‘number2‘ value=‘" + num2 +
                                                   @"‘ />=<input type=‘text‘ value=‘" + result +
                                                   @"‘ />
        <input type=‘submit‘ name=‘btnSubmit‘ value=‘计算‘/>
    </form>
</body>
</html>";
            context.Response.Write(html);
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}


注意这两句会造成结果不同:用context.Response.ContentType = "text/plain"; 
结果就会按原样输出文本.
           用 context.Response.ContentType = "text/html";
结果才是正常的HTML格式输出.

text/html & text/plain的区别

需要了解的概念

  Content-Type:用于定义用户的浏览器或相关设备如何显示将要加载的数据,或者如何处理将要加载的数据

  MIME:MIME类型就是设定某种扩展名文件用一种应用程序来打开的方式类型,当该扩展名文件被访问的时候,浏览器会自动使用指定应用程序来打开。多用于指定一些客户端自定义文件名,以及一些媒体文件打开方式。

 

text/html的意思是将文件的content-type设置为text/html的形式,浏览器在获取到这种文件时会自动调用html的解析器对文件进行相应的处理。

text/plain的意思是将文件设置为纯文本的形式,浏览器在获取到这种文件时并不会对其进行处理。


C#开发web程序中关于 一般处理程序中的context.Response.ContentType = "text/plain"

标签:ashx 一般处理程序 c#

原文地址:http://474204.blog.51cto.com/464204/1933949

(0)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!