Can someone explain to me how does the validation process works because I have two hosting servers one is IIS server and the other is a apache, Now i wanted my ASP/ASP.net website to connect to my PHP server and download the ads from there so I did it and in all the pages the ADS are showing great But The site do does not validate, Although when i change the script to download the ads from a Local ASP script it Validates ? Can someone explain the steps of the Validation process that i can make the script work ...
By the way source code used to download Ads from PHP server <% Dim htmlCode Dim serverXMLHTTP Dim requestingPage requestingPage = "HTTP://www.PHPSERVER/ads.php" Set serverXMLHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP") serverXMLHTTP.Open "GET", requestingPage, False serverXMLHTTP.Send htmlCode = serverXMLHTTP.ResponseText Response.Write(htmlCode) %>