Wu.Country@侠缘

勤学似春起之苗,不见其增,日有所长; 辍学如磨刀之石,不见其损,日所有亏!

导航

The restricted headers are:

有些时候我们可以向httpContent里自己添加一些数据,例如下载的时候,可以自己定义类型,然后处理数据,。

    context.Response.AddHeader("Content-Length",((long)(m_totalLength-m_readLendth)).ToString());
    context.Response.ContentType = "application/octet-stream";
    context.Response.AddHeader("Content-Disposition", "attachment; filename="+m_file.FileName);

其中我们可以自己添加的类型有:

  • Accept
  • Connection
  • Content-Length
  • Content-Type
  • Date
  • Expect
  • Host
  • If-Modified-Since
  • Range
  • Referer
  • Transfer-Encoding
  • User-Agent

    而我在实际应用的时候没成功。

  • posted on 2005-12-27 14:36  Wu.Country@侠缘  阅读(252)  评论(0编辑  收藏  举报