JQuery 动态加载iframe.

html:

<iframe id="ifm" style="inherit;height:inherit" runat="server" ></iframe>

    <li data-options="iconCls:'icon-search'">
       <a href="javascript:void(0)" onclick="showdata()">学生成绩表</a>
   </li>

JS:

        function showdata() {
            $("#ifm").attr("src", 'showdialog.aspx');//JQuery动态加载iframe。
        }

.net aspx后台加载:

 if (!IsPostBack)
    {
        this.ifm.Attributes.Add("src ", "showdialog.aspx");
    }
原文地址:https://www.cnblogs.com/longdb/p/7582686.html