codice:
<% 
var = "1234567" 

a = left(var,2) 
c = right(var,3) 
b = mid(var,3,2) 

response.write a & ":" & b & ":" & c 
%>
Roby