codice:
stringa="miosito@ext.it"

conv_str=""

for i=0 to len(stringa)

  conv_str=conv_str & Asc(mid(stringa,i,1))

next

response.write(conv_str)