Nithesh Narayanan
Nithesh Narayanan

Reputation: 11765

ASP page in a div

Is it possible to load an aspx page in div..? I just want to replace div instead of iframe... Is that possible? then how?

Thanks in advance.

Upvotes: 0

Views: 172

Answers (3)

Mārtiņš Briedis
Mārtiņš Briedis

Reputation: 17762

Yes, with ajax. Check out jQuery ajax.

Upvotes: 1

Oded
Oded

Reputation: 499002

No. divs 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.

Upvotes: 2

CoolStraw
CoolStraw

Reputation: 5390

With Ajax ?

http://en.wikipedia.org/wiki/Ajax_(programming)

Upvotes: 0

Related Questions