给定一个JSP程序源码如下:? <jsp:include?page="two.jsp" flush="true"> <jsp:param?name="location" value="beijing"> </jsp:include>? 在two.jsp中加入()代码片断可以输出参数location的值。
发布时间:2021年10月04日
A.<jsp:getParam?name="location">
B.<jsp:getParameter?name="location">
C.<%=?request.getAttribute("location") %>
D.<%=?request.getParameter("location") %>
答案:D