Recent Posts - page 6
-
State Management in ASP.NET (ViewState, SessionState & ApplicationState)
One of the most crucial concepts in Web Development is the State management. In a nutshell, when you request a page from ASP.NET, the Web Server receives it, process it and finally sends the response back to the browser, discarding… Read More ›
-
Caching SQL Server data in ASP.NET
In nowadays, you won’t find any large scale application that doesn’t make use of some kind of Caching technique. Caching application data can boost application performance and of course improves User interface experience. In ASP.NET there are several kind of… Read More ›
-
Knockout.js with Web API : The perfect compination
We have seen in many posts on this blog, how to call asynchronously a Web API method from a simple HTML page, using jQuery Ajax. Each time we were retrieving some JSON formatted data, we had to update the respective… Read More ›
-
Web API Custom Routing Constraints
Have you ever tried to restrict a Web API route in the way to allow only certain kind of values for specific segments? You will probably have and the most common restriction someone will find out on the web is… Read More ›
-
SqlCommand: The Entity Framework alternative to access databases
SqlCommand is the alternative way to query, insert, update or delete database data. We have seen in lot’s of other posts on this blog, how to execute CRUD operations on a database using the Entity Framework and more specifically an… Read More ›
-
Map CRUD Stored Procedures to Entities with Entity Framework
There are a few different ways to execute a Stored Procedure through a C# application, each of them following different principles. One of the most used approach is to use an SqlCommand object of type CommandType.StoredProcedure and invoke it’s ExecuteReader()… Read More ›
-
Master-detail DropDown lists and Partial Views with jQuery Ajax in MVC
Making use of jQuery Ajax calls in ASP.NET MVC can boost application’s performance. This way, you can GET or POST partial pieces of data from or to application server, without the need to send or retrieve back the entire page…. Read More ›
-
WCF Self-Hosting multiple bindings
When building WCF Services there is this point when you have to make a critical decision: Which binding is the best for you service? Windows Communication Foundation comes with several different bindings, each of those created for specific situations and… Read More ›
-
Related entities and live search with Web API and Entity Framework
Retrieving and manipulating Entities with no related data using Web API and Entity Framework is quite easy and most times, by the time you create a Web API controller using a specific Model class and a DbContext instance you won’t… Read More ›
Featured Categories
ASP.NET ›
-
ASP.NET Core Identity Series – Integrating Entity Framework
May 11, 2018
-
New e-book: Globally-Distributed Applications with Microsoft Azure
February 2, 2018
Best practices ›
-
ASP.NET Core Identity Series – External provider authentication & registration strategy
July 28, 2019
-
ASP.NET Core Identity Series – OAuth 2.0, OpenID Connect & IdentityServer
March 11, 2019
