Displaying multiple Repeater controls in one table
-
I can get two of them to show up in two columns of the table but when I go for the 3rd one in the 3rd column nothing shows up on the browser ... it shows up on the design layout of VS.NET ########################## Taking pride in one's work is good as long as ego isn't a part of it. ##########################
-
I can get two of them to show up in two columns of the table but when I go for the 3rd one in the 3rd column nothing shows up on the browser ... it shows up on the design layout of VS.NET ########################## Taking pride in one's work is good as long as ego isn't a part of it. ##########################
ok let's say you have this... <table> <tr> <td> Repeater#1 </td> <td> Repeater#2 </td> <td> Repeater#3 </td> </tr> </table> and your problem is... when you bind your third repeater, nothing shows in the browser? if this is what you've got, chances are your repeater is rendering bad HTML (missing closing tags or something). Just to make sure, if you select in your browser menu, View > Source you see HTML rendered that should be visible in your browser? if this is so, then it's most likely a problem of bad HTML. daniero