As we all know HTML is stateless language. It cannot persist state, so every web development framework provides facility to maintain state in one way or another way. There are different techniques available for state management in ASP.NET and ASP.NET MVC. Following is summary of all such techniques for maintaining state.
Client Based State Management Options
View State
The ViewState property provides a dictionary object for retaining values between multiple requests for …
The presentation contains overview of Service Oriented Architecture (SOA) and Microsoft’s Windows Communication Foundation (WCF). It covers basic things about SOA and WCF. What are the services? What is SOA? Why WCF? How WCF evolved? Such questions are nicely answered in the presentation. It also covers WCF Contracts. Hope you will enjoy it.
Usually people are asking me why WCF? What is the need of WCF, while there are many other …
Microsoft Exam 70-486: Developing ASP.NET MVC 4 Web Applications intended to test candidate’s ability to design and develop ASP.NET MVC Web Application. It also coveres surrounding things like effective and user friendly User Interface design and development, develop and deploy multi-tier web applications, design and develop asynchronous solutions, come up with effective architectural solutions based on scenarios, implement proper security and attack proof solution and troubleshoot issues occurring at each …
The article is shortly describing some advanced HTML5 topics like Promises, Web Workers and Web Sockets. Rather than to re-writing from scratch about the details, I write the fundamentals about the topics and then give links for detail study.
Promises
Promise is a pattern implemented in Javascript which gives some advantages over Asynchronous Programming in Javascript.
When we execute asynchronous call using “XMLHttpRequest”, the execution does not follow linear path. You need not …