Hi,

I have a one.jsp on which i am using a taglib called <pf:mytag somepath='path'/>

Inside the taghandler class i do the following:

                        try
                        {       
                                pageContext.include(path);
                        }
                        catch(ServletException ex)
                        {
                                ex.printStackTrace();
                        }

path holds the path to another .jsp file that i want to include. I have made sure that my taglib does get the path string.

pageContext.include(path) does not work for me. Have I to do something more than this? Where am i going wrong?

Thanks.

Reply via email to