| Author |
Init() & destroy() in jsp
|
Dean Jones
Greenhorn
Joined: Jun 18, 2002
Posts: 24
|
|
|
hi how it is possible to have the init(),destroy() functionality in a JSP PAge
|
 |
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
|
|
Dean You need the jspInit() and jspDestroy() methods from the jspPage interface.
|
Dave
|
 |
Anthony Villanueva
Ranch Hand
Joined: Mar 22, 2002
Posts: 1055
|
|
|
Yes just override the jspInit() and jspDestroy() methods using <%! %> tags to customize your JSP.
|
 |
 |
|
|
subject: Init() & destroy() in jsp
|
|
|