Réponse acceptée !
Rebonjour,
ce contrôle ne fonctionne pas.
Après maintes galères, j'ai trouvé ce code vb qui me permet de me charger la page xml en xsl voulue. Voila pour ce que ca peut aider :
Sub Chargement_xls()
Dim Objet_Document
Dim Objet_Style
Dim Objet_Template
Dim Objet_Processor
Set Objet_Document = Server.CreateObject("MSXML2.DOMDocument")
Set Objet_Style = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
Set Objet_Template = Server.CreateObject("MSXML2.XSLTemplate")
Objet_Document.async = False
Objet_Document.Load Server.mapPath("MonDoc.xml")
Objet_Style.async = False
Objet_Style.Load Server.mapPath("MonDoc.xsl")
Set Objet_Template.stylesheet = Objet_Style
Set Objet_Processor = Objet_Template.createProcessor()
Objet_Processor.input = Objet_Document
Objet_Processor.Transform
Response.Write Objet_Processor.output
Set Objet_Document = Nothing
Set Objet_Style = Nothing
Set Objet_Template = Nothing
Set Objet_Processor = Nothing
End Sub
Merci quand même de ton aide!
