Questo è un modo in cui potresti fare:
codice:
Dim Valore
Dim StrArr
Dim Str
Valore = "28/10/2007 - 02/12/2007 - 09/12/2007 - 16/12/2007 - 23/12/2007"
StrArr = Split(Valore,"-")
For i = 0 To UBound(StrArr)
StrArr(i) = Trim(Replace(StrArr(i),Trim("23/12/2007"),""))
If StrArr(i) <> "" Then
Str = Str & " - " & StrArr(i)
End If
Next
Str = Replace(Str," - ","",1,1,1)
Response.Write Str
P.S. Metti al posto della data da cancellare d'esempio "23/12/2007" questa istruzione:
Request.Form("nomecampo")
dove "nomecampo" è il nome del campo del form che usi per fare scegliere la data.
Byeeez