Where do you declare methods in JSP?

Questions by naggeek

Showing Answers 1 - 9 of 9 Answers

B@B@

  • Jul 18th, 2007
 

In JSP You can declare methods in the DECLARATION tag and call that method in EXPRESSION tag.

In jsp declarations we can declare methods and variables

<%!      int x;
             public void tone()
             {

              }
%>

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions