Why do the following three lines not return the webpage from Google, when the second section (from Bing) does work?
– these two lines do not return the page from Google:
url = “http://google.com/#q=nasa+guy”
network.request( url, “GET”, M.urlListener )
– these two lines work:
url = “http://www.bing.com/search?q=nasa+guy”
network.request( url, “GET”, M.urlListener )
Any ideas out there? You will notice that you can cut and paste the urls into a browser, and they both work fine.
Thanks!