Bonjour,
Voila un extrait d'une page générée par de l'ASP.
Sur le poste d'un utilisateur, le clic sur l'icone de suppression (en fin de ligne) ne fonctionne pas. La fenêtre de confirmation ne s'affiche pas.
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 <html> <head> </head> <script language="JavaScript"> function Retour() { document.frmSaisie.action = 'Default.asp'; document.frmSaisie.submit(); } function Supprimer(Num) { var Reponse = window.confirm("Confirmez la suppression de cette fiche."); if (Reponse) { document.frmSaisie.txtCompteur.value = Num; document.frmSaisie.action = 'SqlDelete.asp'; document.frmSaisie.submit(); } } </script> <body bgcolor="#ECF4FF" onMouseOver="window.status='XXX'; return true;"> <br> <p align="center"> <font face="Arial" color="" size="3"> <strong> Liste des fiches </strong> </font> </p> <form name="frmSaisie" method="post" action> <input type="hidden" name="txtCompteur"> <table align="center" border="4" width="75%" bgcolor="" bordercolordark=""> <tr> <td> <a href="Liste.asp?Tri=Numero" title="Trier par numéro"> <font face="Arial" color="#0099CC" size="3"> <strong> N° </strong> </font> </a> </td> <td> <a href="Liste.asp?Tri=Nom" title="Trier par nom"> <font face="Arial" color="#0099CC" size="3"> <strong> Nom </strong> </font> </a> </td> <td> </td> </tr> <tr BGCOLOR=""> <td> <font face="Arial" color="#0099CC" size="3"> <strong> 01 </strong> </font> </td> <td> <font face="Arial" color="#0099CC" size="3"> <strong> Acier </strong> </font> </td> <td align="center" width="25"> <span style="cursor:hand;"> <img src="Images/u_del.gif" alt="Supprimer" OnClick="Supprimer(01)" WIDTH="12" HEIGHT="12"> </span> </td> </tr> <tr BGCOLOR="#BAE2E3"> <td> <font face="Arial" color="#0099CC" size="3"> <strong> 02 </strong> </font> </td> <td> <font face="Arial" color="#0099CC" size="3"> <strong> Fer </strong> </font> </td> <td align="center" width="25"> <span style="cursor:hand;"> <img src="Images/u_del.gif" alt="Supprimer" OnClick="Supprimer(02)" WIDTH="12" HEIGHT="12"> </span> </td> </tr> </table> <br><br> <p align="center"> <span style="cursor:hand;"> <img src="Images/retour.gif" alt="Retour" OnClick="Retour()" border="0" WIDTH="100" HEIGHT="25"> </span> </p> </form> </body> </html>
Par contre le clic sur l'image "Retour" fonctionne bien.
Quelqu'un a déjà vu ce genre de comportement ?
Je n'arrive pas à reproduire ce phénomène sur mon poste.
Merci.
Partager