valli kotari

Greenhorn
+ Follow
since Jul 08, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by valli kotari

Hi

It happend for me aswell.I called them and registered for the exam through phone.why dont you try that way.
Hi ,

earlier i saw your post divya congrats for your score.

i am not clear about the above doubt.in page 450 of HFSJ he says....

a)include directive
<%@ include file="header.html" %>
STATIC:adds the content from file at translation time.

b)the <jsp:include> standard action
<jsp:include page="header.jsp" />
DYNAMIC:adds content at request time.

c)the <c:import> JSTL tag
<c:import url="...." />
DYNAMIC:adds content from url at request time

so i am not sure.
Hi,
This is a question from hfsj final mock exam

which jsp code would you use to include static content in a jsp?
a)<%@ include file="/segments/footer.html" %>
b)<jsp:forward page="/segments/footer.html" />
c)<jsp:include page="/segments/footer.html" />
d)RequestDispatcher dispatcher=request.getRequestDispatcher("/segments/footer.html");
dispatcher.include(request,response);

he gave the answers a and c.

but i thought its just a as he is asking about static content.

any help?
Hi, this is a question from JWebPlus.

Given:

<%@ taglib uri="example" prefix="example" %>
<example:aTagWithBody>
<%="Body Content"%>
<example:aTagWithBody>

If the aTagWithBody handler extends from TagSupport and returns EVAL_BODY_BUFERED from doStartTag(),what will it print?

select one correct option
a)the tag handler class would not compile
b)an exception at request time
c)"Body Content" will be printed

he gave the answer b
but i thought it is a

can anyone help?