I have a user control that is redirecting to a page, passing params through the querystring (nothing needing encryption). When I redirect and request the querystring values at the target page, they're null. Seems simple but not sure what's happening here. Attached is the code sample.
<开发者_运维百科;script type="text/javascript">
function ConfirmDelete(deleteUrl)
{
var answer = confirm("Delete member?")
if (answer) {
window.location.href = deleteUrl;
}
}
</script>
Ideas?
精彩评论