munish plaza

Greenhorn
+ Follow
since Sep 25, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by munish plaza

Hi All,
I have a jsp page that has a selection box that is dynamically loaded.
If a user selects one particular item in the selection list and then press "query" i need to call a function with the selected item as parameter.
The return value then has to be displayed in a table.
SO by this i mean everything has to be done in a single JSP page.
Also quey is not the only button i have.I have other buttons that ave different actions.
Please help me at the earliest
Thanks
munish plaza
[ October 04, 2003: Message edited by: Bear Bibeault ]
20 years ago
JSP
Hi,
I am required to get data from a server and populate it into a HTML table.The data can go upto 1000 rows.
If I have a code some thing like this(this is just a pseudo code)
<table border="1">
<% for(int j=0; j<hashtable.length; j++){ %>
<TR id>
<TD > <%=hashtable[j]%> </TD>

</TR>
<% } %>
</table>
How effective from performance point of view is the usage of for loop.
My data is contained in a hash table.What is the best approach that i can use.
Please help
Thanks
20 years ago
JSP