Je dispose du fichier suivant :
Code HTML : 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 <html> <body> <table> <tr> <th>Toto</th> <td>Titi</td> <td>Titi</td> </tr> <tr> <th>Toto</th> <td>Titi</td> <td>Titi</td> <td>Titi</td> </tr> </table> </body> </html>
Je voudrais que lorsque qu'un visiteur se rend sur cette page, la page s'ouvre avec Exel (le navigatoir lui propose de telecharger le fichier et de l'ouvrir avec Exel).
J'ai trouvé sur un site qu'il fallait ajouter :
mais ca ne marche po
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 <html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40">
Partager