Validation Process

Discussion in 'Co-op Advertising Network' started by LiGhTen, Apr 30, 2005.

  1. #1
    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 ...
     
    LiGhTen, Apr 30, 2005 IP
  2. LiGhTen

    LiGhTen Peon

    Messages:
    89
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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)
    %>
     
    LiGhTen, Apr 30, 2005 IP