Name the Implicit variable which is used to access other
implicit objectes present in JSP.

Answer Posted / nilesh

request
session
page
application

Is This Answer Correct ?    1 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is form-based authentication?

530


Difference between load and get method?

550


What is jaap?

543


Is java a web technology?

494


What is tomcat in j2ee?

474






What is wildfly java?

477


Explain the j2ee tiers.

473


What is java api for xml-based rpc (jax-rpc)?

518


explain the technologies that j2ee platform provides for developing components.

475


What are the components of j2ee applications?

595


I’m new to WebLogic Does anyone knows how to Deploy Application using

1749


Is java safe to download?

485


Why java is oop language?

537


Where javac is located?

507


public class ActionSearchBean extends GenericSearchBean { @Override public String search() { data.setRowCount(null); if(data.getRowCount()==0){ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } return "searchAction"; } @Override public String clear() { data.setRowCount(null); if (data.getRowCount() > 0){ data.getNoRecordFound().setRendered(false); data.getDataScroller().setRendered(true); }else{ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } data.setModel(new ActionDTO()); data.setRowCount(null); return "searchAction"; } } what is the purpose of @Override ...what will do @Override here ?

1988