INCOPORATING IFRAME TO YOUR WEBSITES

Problem:  Integration of iframe in our website

WHAT IS AN IFRAME?

An Iframe is used to embed another document within the current HTML document.

When it is used?

There are the times in which a specific document to appear in multiple parts of our website we can use iframes to tackle such a situation without multiplying the code. 

how can it be possible?

 <iframe id="Ifr_mv" height="950" width="950" scrolling="yes" frameborder="1"  src =""  runat="server"/>

</iframe>


you can programmatically specify its frame src code behind
by  

       Ifr_MV.Attributes("src") = "iframe_cirulation.aspx"
 


















Comments