Salve a tutti,

Come faccio a inserire una scrollbar all'interno di una tabella che sta dentro il repeater?

Il codice che ho scritto è pressapoco cosi:

codice:
<asp:Repeater ID="rpt" runat="server" EnableViewState="true">

<HeaderTemplate>
	<table id="tbl">
	<tr>
	<th>xx
	</th>
	</tr>
</HeaderTemplate>
<ItemTemplate>
	<tr>
	<td>	
	....
	</td>
	</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
Grazie,