I am using hibernate as DAO and trying to retrive data Now i want to iterate thru <c:forEach> taglibrary and print on the JSP page where I can hyperlink that data:
Here is the example
I am using the below line in abc.hbm.xml file
property name = userInfo formula=" select U.USER_ID||' ' ||U.USERNAME||' ' ||U.EMAIL from USERINFO U WHERE U.USERID=user_id";
the result from the above query appears like ga259b:kiran:kiran@abc.com
This will be appearing on the JSP and when I click on(hyperlink) ga259b it should give the details on that userid and if I click on kiran@abc.com..it should open a mail composer page
That is my requirement. Can you please help me out ASAP
Start Free Trial