codice:
<%
str = "prima settimana"
posSpazio = instr(str, " ")
new_str = left(str, posSpazio - 1)
response.write(new_str)
%>
Roby