Hello,

I have one problem with access to attribute in request in my class from TagSupport. I send GET to my site (eg. http://localhost/app/site.jsp?Test=value). How to get this "Test" attribute in my class?

I tried:

TagUtils.getInstance().lookup(pageContext,"Test", null);
pageContext.findAttribute("Test");

ServletRequest request = pageContext.getRequest();
request.getAttribute("Test");

... and all of this returns null.

Regards

--
Andy


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to