New JSP Interview Questions :: ALLInterview.com http://www.allinterview.com New JSP Interview Questions en-us what is difference between the contart and implementation? http://www.allinterview.com/showanswers/77927.html How can i connect from jsp to servlet page http://www.allinterview.com/showanswers/77247.html When i am useing useBean tag of JSP in weblogic server It show compil http://www.allinterview.com/showanswers/75960.html what will happen if we disable cookies in the web page? http://www.allinterview.com/showanswers/70484.html I we disable cookies then it will bedifficult for the web container to manage the session with the help of cokkie.So we need to use the encodeURL() method for appending the jsessionid with the URL. when we will use the SendRedirect method instead of forward. http://www.allinterview.com/showanswers/69703.html When there is no need to record/maintain the previous data of the user. Like in google we are searching some infom and after clicking on the searched item, it will forward to some other server or link, where there is no required to maintain i need the source code for opening a word document in java http://www.allinterview.com/showanswers/68332.html How To maintain session ..? http://www.allinterview.com/showanswers/67898.html using cookies,url redirecting, How do I set password expire time period? http://www.allinterview.com/showanswers/67315.html In web.xml file, mention session attribute after servlet-mapping. like this: <session-config> <session-timeout>10</session-timeout> //10 mins </session-config> How do I set password expire time period? http://www.allinterview.com/showanswers/67311.html how the jsp file is compiled? http://www.allinterview.com/showanswers/67086.html when container sees the request for .jsp file it loads the .jsp file &converts into .java then compiles into .class file and it is servlet all the way(continer calss its no-arg constuctor,calss jspInit(),_jspservice()& finally jsp des why JSP is bigger choice for software development as compare to ASP. http://www.allinterview.com/showanswers/66354.html Jsp's are better choice as jsp can be easily turned to Servlets where the servlet container understands. As most of the projects run with java/j2ee, it is very easy to understand for the servlet engine, rather Asp being in third party la hi i m tannu and i m developing one web site as my project and i hav http://www.allinterview.com/showanswers/65075.html Hi ur application was hacked by the some programmers.. u better develop one more application What is the difference between JSP and Servlet? http://www.allinterview.com/showanswers/64734.html Jsp is better for preparing presentation pages, while servlet is good for request processing as it's more difficult to write include, forward a static or dynamic url with in out.println() , Jsp has also all implicit objects, we need not How does JSP handle run-time exceptions? http://www.allinterview.com/showanswers/63736.html You can use the errorPage attribute of the page directive to have uncaught runtime exceptions automatically forwarded to an error processing page. For example: redirects the browser to the JSP page error.jsp if an uncaught exception is encoun What are the implicit objects? http://www.allinterview.com/showanswers/63735.html Implicit objects are objects that are created by the web container and contain information related to a particular request, page, or application. They are: --request --response --pageContext --session --application --out --config -