
sir, how do i store dynamically generated textbox value into the database thanks in advance.

hi buddy, u can use this
try { Enumeration s = request.getAttributeNames();
while(s.hasMoreElements())
{
String name = (String) s.nextElement();
String value = (String)request.getAttribute(name);
value = getInitParameter(name);
}
now u have fieldname as "name" and value as "fieldvalue" and within loop u just run the code to store into the database
try it,
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.