There are two distinct pages that I am working with. My objective is to pass a query string from one page to the other. Here is an example of the code snippet I attempted:
window.location.search = 'id='+hidposid.value;
window.location.href="editviewposition.aspx";
On the receiving page, I extract the value as follows:
cookie1 = HttpContext.Current.Request.QueryString("id") ' returns ""