Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP

Status
Not open for further replies.

murugesanks

Programmer
Jan 25, 2001
48
US
Hi,
I am doing a online Shoping system. I need to store multiple(more than 50) records to a single table. How to develop user interface.
Muru
 
little bit more info please Muru, are you planing on storing up 50 line items as session variables?

try something like
<table>
<tr><td>header columns etc.</td></tr>
<%
Do while session varaible <> NULL
Response.Write &quot;<tr><td>&quot; &amp; ***read your session variables into columns(like Session(&quot;ClientName&quot;) &amp; &quot;</td><td>&quot; &amp; Session(&quot;Itemname&quot;) &amp; &quot;</td><td>&quot;) &amp; &quot;</td><tr>&quot;

Get next session variable
Loop
%>
</table>

Dave
adf999@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top