Thanks to vituz and dianal for helping me to this point...
I am stuck on a couple of simple things. I am trying to pull the querystring so that I can use it in javascript. My method below is not working. It is an ASP page.
When I use this from within a page and not the querystring it works ( I change the var object statement ).
I am opening a new page in the querystring and doing the below actions.
Any ideas of what I am doing wrong?
Thanks, (I vote positive for even remote assistance)
Joe
<SCRIPT LANGUAGE=JavaScript>
var object = <% Request.Querystring %>
var str=object.innerHTML;
document.write(str);
</script>
I am stuck on a couple of simple things. I am trying to pull the querystring so that I can use it in javascript. My method below is not working. It is an ASP page.
When I use this from within a page and not the querystring it works ( I change the var object statement ).
I am opening a new page in the querystring and doing the below actions.
Any ideas of what I am doing wrong?
Thanks, (I vote positive for even remote assistance)
Joe
<SCRIPT LANGUAGE=JavaScript>
var object = <% Request.Querystring %>
var str=object.innerHTML;
document.write(str);
</script>