I am developing an application with ASP.NET MVC and wish to make use of Modal style windows.
Here is one example. On my "Login" view, I have my login details, but also have a button to create an Account for the application. I have a separate "CreateAccount" view, but would like it to pop up inside a ModalPopupWindow.
Is this possible usng just ASP MVC and the ASP.NET Ajax Library, or will I have to use a different Ajax library?
(Another way to ask this question: can I redirect the output of a view into a ModalPopupExtender?)
Jason