EXT怎么利用iframe调用后台程序

望大家指点指点,现在想用ext的iframe调用后台的程序。
Ext.onReady(function(){
Ext.QuickTips.init();
var tabId=Ext.getCmp('tp').getActiveTab().getId(), em=[];
var loadMask = new Ext.LoadMask(Ext.getCmp('vp').getEl(), {msg:genReportNow()});
document.getElementById("iframe").setAttribute("id",tabId+"-iframe");
document.getElementById("iframeBody").setAttribute("id",tabId+"-iframeBody");

    var dsturl = '../tktInfoResumeServlet';

    var mif = Ext.create('Ext.ux.IFrame',{
        id:tabId+'-iframeBody',
        src:dsturl,
        listeners:{
            load:function(){
                alert("11111");
            }
        }
    });

});
利用上面的方法调不到后台的程序,也很纳闷,不知道从何实现。

用html不行吗? html : ''

iframe id="frame_main" src="login.jsp" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe