I am developing a portal using mvc5, on that portal I have a page that has an iframe elements such:
<div class="tab-pane fade in active" id="mgArea">
<iframe id="iframeMgMap" src="@(string.Format("../../mapData/infoMarko/?WEBLAYOUT={0}",Model.MgPath))"
frameborder="0"
scrolling="no"
style="width:100%;height:100%;">
</iframe>
</div>
The portal and the Iframe's content is on the same IIS and runs on the same pool.
I added some css styles in the portal (like bootstrap.css, etc.) and some javascript libraries and plugins (like bootstrap.js and jquery).
My question - is it possible to make iframe use the same css styles and javascript libraries and plugins from it's parent page?