request对象是服务器对浏览器请求的封装,而response是服务器对服务器响应的封装。
1.服务器接到一个http请求后,封装为一个request对象,用来取信息
2 将信息封装为一个response对象,用来存信息
3.将response解析,响应给浏览器
eg:
这段代码是使浏览器记住密码
//首先请求浏览器中的Cookies,检查是否有该用户的账号信息,因此使用Reques.Cookes["userName"]
HttpCookie httpCookie = Request.Cookies["userName1"];
if (httpCookie == null || httpCookie.Value != userName.Text.Trim() || Request.Cookies["password1"].Value != password.Text.Trim())
{
Session["userName1"] = userName.Text.Trim();
//检测到浏览器的Cookie中没有该用户的账号信息,或者密码不一致时,服务器将用户信息写入到浏览器的Cookies中,
//并且使浏览器弹窗提示登录成功! 因此使用Response
Response.Cookies["userName1"].Value = userName.Text.Trim();
Response.Cookies["password1"].Value = password.Text.Trim();
}
Response.Write("<script>alert('登录成功')</script>");
总结:
服务器获取浏览器的信息,使用Request
服务器向浏览器发送指令 使用Response