On this page I've a button and an iframe. When I press that button, on click event has: document.getElementById("iframeID").src="mypage.asp?test=xpt" .
On mypage.asp I've
test=request.queryString("test");
response.write test
response.end()
The iframe loads the page, but test is empty.
Any one please…
On mypage.asp I've
test=request.queryString("test");
response.write test
response.end()
The iframe loads the page, but test is empty.
Any one please…