ASP + XML + XSL

wxdqz

New Member
HI,I have used ASP to extract data from table to construct axml page base on user selection. I run the script in thebrowser, and it showed up the xml tag in proper order.Next, I write a XSL script.Then, I wrote a page for the transformation to take place<%Set myData = Server.CreateObject("Microsoft.XLMDOM")myData.async = falsemyData.load(Server.MapPath("catalog.asp")Set myStyle = Server.CreateObject("Microsoft.XLMDOM")myStyle.async = falsemyStyle.load(Server.MapPath("catalog.xsl")...%>I got this error "A name was started with an invalidcharacter" when the script is loading catalog.asp.I come to think that maybe its due to the incompleteprocessing of the ASP page or could it be any other reason?How could I redesign my appl to avoid that error..Any help welcomed...thanks
 
Back
Top