-1
我有一個asp.net mvc應用程序,其中我有一個名爲_GeoApi.cshtml
的局部視圖。在asp.net mvc應用程序內的iframe中渲染局部視圖
我需要在iframe內呈現它。
<iframe src='@{Html.RenderPartial("_GeoApi");}' id='fram' ></iframe>
我得到一個生成的html代碼:
<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>
所以,我需要知道
- 什麼是這個錯誤的原因是什麼?
- 我該如何修復我的代碼?