Is it possible to call a webpage without loading the page? I just need to call a URL that contains private information and do not want the page to actually load so the user cannot see the URL. The URL just needs to be sent.. not requesting anything back.
Anyway to make this happen without having to call a page on the server? This only works if the new page is local on the server right? I'm trying to launch an external URL without bringing up the window. This would work perfect if I could call something similar like: Server.Transfer("http://www.google.com")
Response.redirect gets this done, but displays the page and URL.
Bookmarks