>you should try this code instead
><%
>pageContext.setAttribute("A","test");
>%>

><%
>out.println(pageContext.getAttribute("A"));
>%>

>this will print.. the value of "A" which is "test"

yes, this is Ok of course. But the problem is:

1) I am creating a page scope object in the tag
2) code, generated by JSP is
Type variable_name=some_call_here();

So at the end of the day my variable is described by the
same way as an any variable in the scriptlet. But in
the same time I could not check 'scriptlets variables'.


ServletShop: java server side programming
http://coldjava.hypermart.net

____________________________________________________________________
Get your own FREE, personal Netscape WebMail account today at 
http://home.netscape.com/webmail

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to