'-----Head---------
<script>
dim i
Function Ctrl(Str as String) as String
dim restituito
restituito="Debug: "+Ora
return restituito
end function
</script>
'------------ body---------
<%
for i=0 to 24
%>
<ASP:repeater id="Repeater1" runat="server">
<ItemTemplate>
<%#Ctrl(i)%>
</ItemTemplate>
</ASP:repeater>
<%next%>

--------------------------------

Quello che non capisco è perchè i risulta vuoto dentro la funzione, cioè se metto un response.write dentro la function, stampando la var passata non ottengo nulla.
Idem il datarepeater...
Dove sto sbagliando? quella maledetta variabile dove si auto-distrugge?

thnx!
Vincenzo