this is what i am trying to do:
I generate the html for a
jsp in a
java class. For that I am appending the html to a
string buffer.
eg.
stringbuffer.append("<input type='text' name='name' value='<jsp:getProperty name=\"beannabe\" property=\"propertyname\" />'>");
when I print the value of the stringbuffer on the jsp it is just displaying the '<jsp:getProperty name=\"beannabe\" property=\"propertyname\" />' as is and not getting the value of the property form the bean.
What is it that I am doing wrong here?
Thnx in advance
Harmeet
[ January 24, 2006: Message edited by: Bear Bibeault ]