I'd like to loop though and display a given amount of images
But instead of my id variable in the URL being 1, I need it to be the value of x from my loop?Code:<table> <tr> <% dim x as integer for x = 1 to 5 %> <td><asp:Image ImageUrl='readrealimage.aspx?id=1' Width="84" Height="105" Runat=server /> </td> <% next %> </tr> </table>
Can someone help me out?




Reply With Quote