Re: Is there a way to call java.lang.String.substring on a

2002-10-11 Thread Jungho Kim
The value of c:out is output to the JspWriter instance for the page at runtime and as such it would not be possible to do what you are suggesting from within a jsp page. As Shawn suggested take a look at the String taglib. It actually has a tag called "substring". regards, Jungho - Origina

Re: PageContext is always null with taglibs

2002-09-12 Thread Jungho Kim
try overriding setPageContext(PageContext ctx) and check that it is being invoked. public void setPageContext(PageContext ctx) { System.out.println("Inside " + getClass().getName() + ".setPageContext()..."); super.setPageContext(ctx); } That should settle any doubt that pageContext is be

Re: Re: Tomcat 4.1.10 and tag pooling problem

2002-09-04 Thread Jungho Kim
Which specfic tag is it? It sounds like release() is not being invoked properly by the tag but can't be sure until you look at the source. regards, JK - Original Message - From: "Ari Suutari" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 04, 2002 6:32 AM Subject

Re: RE:How to Modify Netscape's Session Behavior on opening a window

2002-01-08 Thread Jungho Kim
hmmm... if this is possible at all, this would be a setting on the client machine and therefore, only way to modify this setting would be through some javascript API exposed by the Netscape browser. If such an API exists, your JSP page would contain javascript to modify the user setting. You mi