| Author |
JSP implicit objects in Simple Tags
|
KRK Gowda
Ranch Hand
Joined: Nov 02, 2004
Posts: 132
|
|
Hi All, Custom tags can have access to JSP implicit objects using PageContext object. this is ok with Classic tags as interface Tag do have method getPageContext to get object of PageContext. but with Simple Tags, they use JspContext. and JspContext do not have access to JSP implicit objects. does it mean that Simple tags cannot access JSP implicit objects. :roll: Thanks and Regards,
|
 |
Chethan Verma
Greenhorn
Joined: Oct 30, 2006
Posts: 18
|
|
Hi KRK, We can use PageContext with SimpleTags. We'll have to cast JspContext to PageContext.
|
 |
Gowher Naik
Ranch Hand
Joined: Feb 07, 2005
Posts: 643
|
|
|
|
 |
 |
|
|
subject: JSP implicit objects in Simple Tags
|
|
|