A.request.getAttribute(“habit”);
B.request.getParameter(“habit”)
C.request.getParameterValues(“habit”)
D.request.getHabit();
第1题:
Winforms程序中,如果复选框控件的Checked属性值设置为True,表示
A.不显示该复选框的文本信息
B.该复选框被选中
C.该复选框不被选中
D.显示该复选框的文本信息
第2题:
form表单提交的信息中含有“name= svse”,阅读下面的JSP,a.jsp将输出()。 接受该请求的JSP: <% response.sendRedirect("a.jsp"); %> a.jsp: <%=request.getParameter("name") %>
A.null
B.什么都不输出
C.异常信息
D.svse
第3题:
JSP从HTML表单中获得用户输入的正确语句为()
A.request.getParameter(“name”)
B.reponse.getParameter(“name”)
C.request.getAttribute(“name”)
D.reponse.getAttribute(“name”)
第4题:
若A.jsp中某表单的action属性值为B.jsp,则在B.jsp中可以使用()方法获取该表单提交的表单元素的值。
A.request.getParameter(String)
B.request.getAttribute(String)
C.session.getAttribute(String)
D.application.getAttribute(String)
第5题:
下面对于HTML表单中的复选框(checkbox)说法正确的是()
A.选定了checkbox元素,并点击提交按钮,会将一个name/value与form一并提交
B.复选框在默认情况下为选中状态
C.checkbox的CHECKED属性设置该复选框被选中
D.复选框的NAME属性值必须相同