Multiple choice technology web technology Which of the following shows a proper use of a jsp standard action ? <jsp:forward page="view.jsp" /> <jsp:forward file="view.jsp"/> <jsp:dispatch page="view.jsp"/> <jsp:dispatch file="view.jsp"/> Reveal answer Fill a bubble to check yourself A Correct answer Explanation The jsp:forward standard action uses the 'page' attribute to specify the target resource, not 'file'. The correct syntax is . There is no 'dispatch' standard action in JSP.