Hi All,
I have an asp page and in asp page there is iframe having HTML page. What i need is to send two values from asp page to inner HTML page. How is it possible.
Hi All,
I have an asp page and in asp page there is iframe having HTML page. What i need is to send two values from asp page to inner HTML page. How is it possible.
You can pass them as query string vars:
<iframe src="page.asp?var1=<%=var1%>&var2=<%=var2%>"></iframe>