I have a CMS I built using Classic ASP with VBscript.
I'd like to convert the registration page to ASPX and make it work ASYNC (AJAX?) so that a person can change one field and that field auto-updates the database but not the whole page.
Optimally, I can send Session variables to that page from my .ASP but it is not necessary! Important. I don't want to choose the wrong framework just in order to keep my session vars! I am happy to manually save a cookie to the user's machine (or even use a querystring) so that when they pull up the ASPX registration page, it knows who it is talking to. Session vars depend on cookies anyway so no biggy.
Oh! Another factor: It would be great if I could utilize as much of my existing Classic ASP code on that page as possible. Which is a plus on the side of MVC? And... is it MVC where I could do something like the following:
<asp:ScriptManager id... runat="server></asp:ScriptManager>
Use <UpdatePanel ... id... runat="server"> control.
Async code goes here
<ContentTemplate>
</ContentTemplate>
</asp:UpdatePanel>
OK... so do you recommend WebForms, MVC, or Web Pages? I'm using Visual Studio 2012.
Thanks for the advice!