Rebonjour,
J'aimerais récupérer ma valeur " AffFinal" dans une variable de type string Comment je fais svp? merci
<script type="text/vbscript">
Dim rec(7),Aff,AffFinal,carac1,carac2
rec (0)="<%#TagSSI,PR_str_TIT_Recipe1%>"
rec (1)="<%#TagSSI,PR_str_TIT_Recipe2%>"
rec (2)="<%#TagSSI,PR_str_TIT_Recipe3%>"
rec (3)="<%#TagSSI,PR_str_TIT_Recipe4%>"
rec (4)="<%#TagSSI,PR_str_TIT_Recipe5%>"
rec (5)="<%#TagSSI,PR_str_TIT_Recipe6%>"
rec (6)="<%#TagSSI,PR_str_TIT_Recipe7%>"
rec (7)="<%#TagSSI,PR_str_TIT_Recipe8%>"
for each x in rec
carac1=x And 65280
carac1=carac1/256
carac2=x And 255
Aff=(Chr(carac2)+ Chr(carac1))
AffFinal = AffFinal & Aff
next
document.write("<input type='text' name='pgmTitre' size="10"
value='" & AffFinal & "'>" )