As we all know HttpwebRequest loads another page behind the scenes without redirecting the client to the other page.
How can I get this functionality using Javascript/Jquery?
$(document).ready(function () {
debugger;
var ip = '<%= Request.UserHostAddress%>';
var location = window.location.href;
var Browser = BrowserDetect.browser;
var Version = BrowserDetect.version;
var Os = BrowserDetect.OS;
var SendItems = 'Ip=' + ip + '&location=' + location + '&Browser=' + Browser + '&Version=' + Version + '&Os=' + Os;
var HttpWebReq = ?
I want to pass these values as a query string to the other page :S