I am a beginner when we consider XML. So, I will need help if anyone can guide me on how to convert below XML file to HTML Display. Reason for Converting XML to HTML is I dotn want my user to see http://www.secretsite.com link. So, HTML will show... ErrorDescription : Rejected - Duplicate from same vendor LeadID : 12731285 ClientAvailable : false Any guidance will definitely help.. Its BIT urgent.. I heard I have to use XSL Transformations (XSLT) but it goes top over my head. Further Details : ********************* When I use in My ASP file <form action="http://apps.secretsite.com/Supplier...asmx/InsertLead" method="post" enctype="application/x-www-form-urlencoded" name="AA" id="AA"> It returns me the XML file as shown above. So, Currently it is Form --- > InsertLead --- > XML Output I am looking forward to Form --- > InsertLead --- > XML Output---> HTML Output Possible ? I found one link but still thinking how to use it... http://developer.apple.com/internet/webcontent/xmlhttpreq.html
But then in your form you are exposing the http://apps.secretsite.com to the user? Your normal case would be to have the form submitted to yourself and then behind the scenes repost it to the API, consume the XML returned and then output the HTML. Are you looking at classic ASP or .Net?