J'ai un petit souci avec mon code SVP ! J’ai des liste déroulante et je voudrais récupérer des fichiers dans un répertoire par exemple dans mes liste déroulante que ce que je dois ajouter je suis bloqué ! :/ voilà mon code :
Merci d'avance
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Untitled Page</title> <meta name="generator" content="WYSIWYG Web Builder 9 - http://www.wysiwygwebbuilder.com"> <style type="text/css"> body { background-color: #FFFFFF; color: #000000; font-family: Arial; font-size: 13px; margin: 0; padding: 0; } </style> <style type="text/css"> @-webkit-keyframes animate-border { 0% { border-color: #000000; } 100% { border-color: #FF0000; } } @-moz-keyframes animate-border { 0% { border-color: #000000; } 100% { border-color: #FF0000; } } @-o-keyframes animate-border { 0% { border-color: #000000; } 100% { border-color: #FF0000; } } @-ms-keyframes animate-border { 0% { border-color: #000000; } 100% { border-color: #FF0000; } } @keyframes animate-border { 0% { border-color: #000000; } 100% { border-color: #FF0000; } } a { color: #0000FF; text-decoration: underline; } a:visited { color: #800080; } a:active { color: #FF0000; } a:hover { color: #0000FF; text-decoration: underline; } </style> <style type="text/css"> #Combobox2 { border: 1px #A9A9A9 solid; background-color: #FFFFFF; color: #000000; font-family: Arial; font-size: 13px; } #Combobox3 { border: 1px #A9A9A9 solid; background-color: #FFFFFF; color: #000000; font-family: Arial; font-size: 13px; } #FileUpload1 { border: 1px #A9A9A9 solid; background-color: #FFFFFF; color: #000000; font-family:Arial; font-size: 13px; } #Button1 { border: 1px #A9A9A9 solid; background-color: #F0F0F0; color: #000000; font-family: Arial; font-size: 13px; } #AdvancedButton1 { border: 1px #A9A9A9 solid; background-color: #F0F0F0; } #AdvancedButton2 { border: 1px #A9A9A9 solid; background-color: #F0F0F0; } #AdvancedButton3 { border: 1px #A9A9A9 solid; background-color: #F0F0F0; } #Combobox1 { border: 1px #A9A9A9 solid; background-color: #FFFFFF; color: #000000; font-family: Arial; font-size: 13px; } #Button2 { border: 1px #A9A9A9 solid; background-color: #FFFFFF; color: #000000; font-family: Arial; font-size: 13px; -webkit-animation: animate-border 700ms linear 0ms infinite normal; -moz-animation: animate-border 700ms linear 0ms infinite normal; -ms-animation: animate-border 700ms linear 0ms infinite normal; animation: animate-border 700ms linear 0ms infinite normal; } </style> </head> <body> <select name="Combobox1" size="1" id="Combobox2" style="position:absolute;left:118px;top:299px;width:151px;height:20px;z-index:0;"> </select> <select name="Combobox1" size="1" id="Combobox3" style="position:absolute;left:118px;top:359px;width:151px;height:20px;z-index:1;"> </select> <input type="file" id="FileUpload1" style="position:absolute;left:886px;top:242px;width:252px;height:21px;z-index:2;" name="FileUpload1"> <input type="submit" id="Button1" name="" value="Submit" style="position:absolute;left:964px;top:274px;width:96px;height:25px;z-index:3;"> <button id="AdvancedButton1" type="button" name="" value="" style="position:absolute;left:299px;top:240px;width:129px;height:20px;z-index:4;"> <div style="text-align:center"><span style="color:#000000;font-family:Arial;font-size:13px">HLR</span></div> </button> <button id="AdvancedButton2" type="button" name="" value="" style="position:absolute;left:299px;top:296px;width:129px;height:20px;z-index:5;"> <div style="text-align:center"><span style="color:#000000;font-family:Arial;font-size:13px">AUC</span></div> </button> <button id="AdvancedButton3" type="button" name="" value="" style="position:absolute;left:299px;top:361px;width:129px;height:20px;z-index:6;"> <div style="text-align:center"><span style="color:#000000;font-family:Arial;font-size:13px">TEST</span></div> </button> <select name="Combobox1" size="1" id="Combobox1" style="position:absolute;left:118px;top:239px;width:151px;height:20px;z-index:7;"> </select> <input type="submit" id="Button2" name="" value="Fusionner" style="position:absolute;left:236px;top:406px;width:96px;height:25px;z-index:8;"> </body> </html>
Cordialement,
Partager