Hello,
I'm developing a website for a client using ASP.NET MVC 1.0. There is a "profile's page" with many links releated to the profile. For example, "request contact", "see our diretions", "add as your friend", etc.
I would like to use one of the many jquery modal scripts to show this links, without load them as a normal page/link, because the links are small features that aren't worth it to create a specific page for each one.
So this is why I want to use a modal plugin to load the content of this small features to the profile's page.
Ok, the question is: How should I do that? I can use either an iFrame to load the content or load the content via Ajax.
If I use iFrame, I need to have a view with all the page estructure (html, heade, body, etc..), but if I have a Ajax request, I just need a with my form inside and load into another div, or with a google maps, or whatever..
Should I go with iFrame or Ajax? Which is the best approach?
Thanks