Hello,
OK here's the problem:
url = "http://localhost/searchfor/1.asp?q=Matrix" set xmlhttp = CreateObject("Msxml2.ServerXMLHTTP.3.0") xmlhttp.open "POST", url, false xmlhttp.send "" TheHTMLSource = xmlhttp.responseText set xmlhttp = nothing
|
This is what I am using to call the page. However, the page has a different structure. The 1.asp page calculates the search results, and redirects to 2.asp which shows result by requesting cookies set by 1.asp
Now, whenever I call this, nothing happens. 2.asp doesn't show the results. It only shows the default results (which are set if cookies are not found).
Is there anything I can do about it?