求一个关于http请求格式的详细介绍,谢谢!
在一篇文章中看见用到Response返回http请求的代码?我对HTTP请求他的格式不是很了解所以想在这里请教一下! --------------------编程问答-------------------- Response.AddHeader("Connection", "Keep-Alive");Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment;filename=" + System.IO.Path.GetFileName(Server.MapPath(url)));
Response.AddHeader("Content-Length", r.Length.ToString());
上面的代码虽然知道是对HTTP请求的设置,但不知道具体的内容和作用~~~~~~
补充:.NET技术 , ASP.NET