hi,
I am pretty new to this field, looking for little help.
My problem:.
I'm showing thumbnails on the page. i'm reading the files directly from the folder using File system object and For each loop. but problem is all my pictures are showing in one row which we can't see(pictures are in individual cells). Now i have to break the rows ... How???? I have to show 4 pictures in each row. basically break the row after 4 cells....thanks
My code:
<table width=100% cols=4>
<tr align=left id="picRow" name="picRow">
<% For Each file In t_files%>
<td id ="numCell" name="numCell">
<a href='<img src=' ...../<%=selEvent%>/thumbnails/<% Response.Write (file.name)%> ' border=0>
<p><%Response.Write fso.GetBaseName(file.name)%></p>
</a>
</td>
<% Next %>
</tr>
I am pretty new to this field, looking for little help.
My problem:.
I'm showing thumbnails on the page. i'm reading the files directly from the folder using File system object and For each loop. but problem is all my pictures are showing in one row which we can't see(pictures are in individual cells). Now i have to break the rows ... How???? I have to show 4 pictures in each row. basically break the row after 4 cells....thanks
My code:
<table width=100% cols=4>
<tr align=left id="picRow" name="picRow">
<% For Each file In t_files%>
<td id ="numCell" name="numCell">
<a href='<img src=' ...../<%=selEvent%>/thumbnails/<% Response.Write (file.name)%> ' border=0>
<p><%Response.Write fso.GetBaseName(file.name)%></p>
</a>
</td>
<% Next %>
</tr>