joel mathew

Greenhorn
+ Follow
since Dec 05, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by joel mathew

Hi all
I have a custom tag and in its TagHandler class if i use
String data= "<h2>Test</h2>";
JspWriter out=pageContext.getOut();
out.print(data);
This will render the html. But in my case i want to render a struts or Jsf tag.
String data= "<s:text name=empname>Test</s:text>";
It will not render the tag!!!How can i render the tag.
In the jsp I have included <%@ taglib prefix="s" uri="/struts-tags" %>
Can somebody point me in the right direction?
Any help will be greatly appreciated!!!
15 years ago