I work for a good sized healthcare organization as a web developer and have recently been tasked with developing a set of standards and possible reference applications for mobile development. Our current methodology relies heavily on asp.net 3.5 along with a large framework library that is common across all of our applications.
I have just begun to dabble with jQuery Mobile and it appears that any solution or direction we come up with will lean heavily on that framework.
Questions:
Is it reasonable or not to attempt a jQuery Mobile solution on top of asp.net web forms? I realize that jQuery Mobile does not make use of post backs in a traditional web forms fashion, but can it be done? How much better would a MVC solution be? (I have worked with both and don't want to get into a bigger Web Forms vs MVC discussion but wonder if one just works better with jQuery Mobile than the other.)
How is data saved within a jQuery Mobile application? I get the data-role="page" idea but is data typically saved to the back-end web server via ajax calls that do not rely on traditional client post backs? If not, then how? If it typically does rely on ajax, then is the idea of using Web Forms just silly?
Thanks,