Hey, Urgent help needed. I have an .asp page (index.asp) and I have an <iframe src="myframe.asp"> in that .asp page. Is there any way I can fetch the value that is being passed in the index.asp querystring in myframe.asp page? so, suppose the link: http://mydomain.com/index.asp?id=5 can I fetch that value of id in the myframe.asp page (which is the iframe page)? If yes, How? Thanx
Retrieving info from a query string into an iframe (which is a seperate page) cannot be done (GET method). The ASP must be on the same page. It may be possible using the POST method, sending the info to the iframe page.
Hey, I think I have solved this.. I can pass the value to the iframe as querystring <iframe scr="myframe.asp?id=<%=request("id")%>"></iframe>