Hi,
Is it possible to get the fields label name from jsp to Action/servlet for example,
My jsp has some fields like this,
Label name: Fields
Search: <html:text property="txtSearch"/>
Order: <html:checkbox property="chkOrder"/>
Now I need to get these label names below mentioned format,
HashTable<String,String> labelList=new HashTable<String,String>()
lableList ={txtSearch=Search:, chkOrder=Order:}
Please someone help me.