给定JSP程序源码如下,该JSP运行后输出的结果是( )。
<% int count =1;%> Count: <% ++count; %>
a) Count:1 b) Count:2
c) 1:2 d) Count:
在表单标记中,用______属性来提交填写的信息、调用表单处理程序。
A.method B.name C. style D. action
给定一个JSP程序源码如下:
在two.jsp中加入( )代码片断可以输出参数location的值。
A.
B.
C.<% = request.getAttribute(“location”)%>
D.<% = request.getParameter(“location”)%>