how to connect one jsp page to another jsp page????
Answer Posted / deepak divvela
<%
RequestDispatcher rd=sc.getRequestDispatcher("a.jsp");
rd.forward(req,res);
%>
| Is This Answer Correct ? | 35 Yes | 26 No |
Post New Answer View All Answers
Is vector thread safe in java?
How can you share data between two thread in Java?
What is foreach loop in java?
java Technical questions asked by JPMC
Is string passed by reference in java?
Why is a constant variable important?
What is illegal identifier in java?
Is string thread safe in java?
What is the difference between equals() and == in java?
What if I write static public void instead of public static void in java?
Can we sort a map in java?
What does indexof mean?
What are encapsulation, inheritance and polymorphism?
How can we use primitive data types as objects?
What’s the difference between constructors and other methods?