阿摩線上測驗 登入

試題詳解

試卷:無年度 - Java EE 6 Web Component Developer Certified Expert Exam:1z0-899(51-100)#84004 | 科目:OCE

試卷資訊

試卷名稱:無年度 - Java EE 6 Web Component Developer Certified Expert Exam:1z0-899(51-100)#84004

科目:OCE

73 Click the Exhibit button. Given the HTML form: 1. <html> 2. <body> 3. <form action="submit.jsp"> 4. Name: <input type="text" name="i1"><br> 5. Price: <input type="text" name="i2"><br> 6. <input type="submit"> 7. </form> 8. </body> 9. </html> Assume the product attribute does NOT yet exist in any scope. Which code snippet, in submit.jsp, instantiates an instance of com.example.Product that contains the results of the form submission? 5e77110bc0f31.jpg


(A) <jsp:useBean id="com.example.Product" /><jsp:setProperty name="product" property="*" /> 

(B) <jsp:useBean id="product" class="com.example.Product" />${product.name = param.i1}${product.price = param.i2} 

(C) <jsp:useBean id="product" class="com.example.Product"><jsp:setProperty name="product" property="name"param="i1" /><jsp:setProperty name="product" property="price"param="i2" /></jsp:useBean> 

(D) <jsp:useBean id="product" type="com.example.Product"><jsp:setProperty name="product" property="name"value="<%= request.getParameter( "i1" ) %>" /><jsp:setProperty name="product" property="price"value="<%= request.getParameter( "i2" ) %>" /></jsp:useBean>
正確答案:登入後查看