I have a asp.net mvc application in which I have a partial view named _GeoApi.cshtml.
I need to render it inside an iframe.
<iframe src='@{Html.RenderPartial("_GeoApi");}' id='fram' ></iframe>
I get a generated html code :
<iframe<script src="/Scripts/External js/jquery-1.8.2.js">
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBCVSBoBAUjAfb-Pfx_qq0ZKUHCitbzsl4&libraries=places&callback=initAutocomplete" async="" defer=""></script>
//content removed for brivety
src='' id='fram' />
</iframe<script>
So I need to know
- What are the reasons of this error?
- How can I fix my code?