ASP page in a div
Is it possible to load an aspx page in div..开发者_JS百科? I just want to replace div instead of iframe... Is that possible? then how?
Thanks in advance.
No. div
s contain HTML, not whole documents.
If you want to load a whole page inside another, you can only use frames.
However, if you are interested in loading document fragments, look at AJAX.
Yes, with ajax. Check out jQuery ajax.
With Ajax ?
http://en.wikipedia.org/wiki/Ajax_(programming)
精彩评论