Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
Ranked #4K
~863 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Ankita B

You should change this [code=html]while(enum.hasMoreElements()) { String upid = (String)enum.nextElement(); String upname = (String)enum.nextElement(); %> <tr> <td> <input type="radio" name="idradio" selected="false" value="<%= upid %>" /> </td> <td> <% out.println(upid);%> </td> <td> <%out.println(upname);%> </td> </tr> <%} %> to this <input type="hidden" name="uptime" value="" > <% while(enum.hasMoreElements()) { String upid = (String)enum.nextElement(); …

Member Avatar for Ankita B
0
863

The End.