Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamically generate

Status
Not open for further replies.

lastcar2000

Programmer
Apr 27, 2001
6
0
0
HK
How can I dymanically generate table or hyperlink by using programm eitor? What method should I use ? Thanks.
 
There are several solutions for your problem :
you can use the pageRequestEnd to append html at the end of your page (res.append...)
you can use a java bean (you have to program yourself)
the best way is to insert a label in your page. Then, label.setRawHTMLMode(true) allows you to make pure HTML with label.setText(&quot;<TABLE>...</TABLE>&quot;);

Ciao
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top