If you want only getting checkbox's checked property, you can use window.opener.document.getElementById("chkBoxID") to getting checkbox object in opened popup page or you can send this value by querystring ( window.open("popup.aspx checked="+checkbox.checked) )
You cannot assign a value to session at client side.But you can set that value to cookie at client, and then you should get it from server.
|