I have come across the SPA design pattern and have a doubt whether this is applicable for a small complete application such as Employee Attendance system or similar application. This will have minimum 5 views and several controllers or actions to be implemented. How does the SPA pattern solve this? Please clarify my doubt as I am very new to this pattern.
Share
SPA is a possibility, although its goal is really to improve throughput by not using Server Redirects very often through very high turnover websites. You substitute your postbacks for AJAX/JSON calls.
From what you are describing, the standard MVC pattern would be fine for what you are looking to do. You can still convert your actions to use JSON at a later time.