A.get請求是默認(rèn)的 B.get請求處理的數(shù)據(jù)量大小不受到限制。//get處理小數(shù)據(jù)量 C.post請求地址欄里是能看到數(shù)據(jù)的 D.post請求可以由doGet方法處理
A.forward之后可以使用原來的request對象,而且效率較高 B.sendRedirect之后不可以使用原來的request對象,而且效率較低 C.forward地址欄不變化,只能在Web應(yīng)用程序內(nèi)的頁面間跳轉(zhuǎn) D.forward地址欄變化,可以跳轉(zhuǎn)到任何頁面和機器
A.session.getAttribute(“key”,”value”) B.session.setAttribute(“key”,”value”) C.session.setAtrribute(“key”) D.session.getAttribute(“key”)