Add Text Fields Dynamically
Hi,I have a common jsp page which i will be given to different clients. But some of the clients needs some more extra text fields. so for that particular client i want to dynamically generate text fields.Can any body help in getting some light on how this can be
[299 byte] By [
zetaa] at [2007-11-27 4:04:00]

# 1
There are several ways. If you want to do it clientside, use JS+DOM. If you want do to it serverside, use JSTL (c:if or c:forEach might be useful) or implement a MVC framework (JSF).