CristianLos
info script
sto usando questo script per dividere il campo "categoria:descrizione completa" in tre parti concatenate dal ";" perchè devo dividere nell'export degli articoli macro categoria;sottocategoria;subcategoria avendo 3 livelli in anagrafica sembra che lo "split" non funzioni correttamente, se lo uso al di fuori di ready funziona a dovere vedi link https://msdn.microsoft.com/en-us/library/0764e5w5.aspx
dim mioarray dim a dim b dim c dim miastringa miastringa = Product.CustomField(113)
mioarray = Split(miastringa, "/", -1, 1)
If UBound(mioarray) = 0 then a = miastringa else If UBound(mioarray) > 0 then a = mioarray(0) end if If UBound(mioarray) > 1 then b = mioarray(1) end if If UBound(mioarray) > 2 then c = mioarray(2) end if end if response.write(a & ";" & b & ";" & c)
|