Below is the JavaScript code I am using:
var link = AjaxLocation + "/createDataSet.aspx";
$j.post(link, null, function() {
window.location.replace("/admin/SavedDataSet_edit.aspx?businessId="+data);
}, "html");
The createDataSet.aspx
page returns the businessId for the SavedDataSet_edit.aspx
page...
Every time the page redirects to the SavedDataSet_edit.aspx
page, the query string is displayed in the address bar of the browser.
How can I hide the query string? And if I hide it from the browser, how do I fetch it on the SavedDataSet_edit.aspx
page?
Thank you.