what's the best (most effecient) way in asp .net to return a whole page into tabbed content?
        Posted  
        
            by ijjo
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by ijjo
        
        
        
        Published on 2010-02-06T07:59:53Z
        Indexed on 
            2010/05/31
            12:03 UTC
        
        
        Read the original article
        Hit count: 220
        
what i want to do is every time i click on a tab, the content area is replaced by pretty much a whole new page. i don't want a full page load so i want to do it in ajax, but i'm used to sending back small jason data via page methods. i'm not sure how i would construct a whole new page and return that via ajax and i would like to simply assign the whole content returned to a div and be done with it. what's the best way to do this with the least amount of overhead (i know there are some inefficient ways the scriptmanager does ajax)?
or is it better to load the tabbed content in an iframe?
fyi i'm already using jquery to call lightweight pagemethods on my asp net page and that works great.
© Stack Overflow or respective owner