JQuery 动态加载iframe.

html:

<iframe   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");
    }