Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
If Request.Cookies("myLeftColumn") <> "" or Request.Cookies("myRightColumn") <> "" Then
If Request.Cookies("myLeftColumn") <> "" Then 
tLeftColumn = Split(Request.Cookies("myLeftColumn"), "££")
Else
tLeftColumn = ""
End If
If Request.Cookies("myRightColumn") <> "" Then 
tRightColumn = Split(Request.Cookies("myRightColumn"), "££")
Else
tRightColumn = ""
End If
Else
' Default design
If Application("myLeftColumn") <> "" Then 
tLeftColumn = Application("myLeftColumn")
Else
tLeftColumn = Array("0", "1", "2", "3", "4", "5", "6", "7")
End If
If Application("myRightColumn") <> "" Then
tRightColumn = Application("myRightColumn")
Else
tRightColumn = ""
End If
End If

j'ai pas bien compris myLeftColumn c'est quoi c'est un tableau ? si oui de quoi ?
merci d'avance