Author Archives
Senior Software Engineer
-
URL Routing in ASP.NET MVC – Part 1
Prior to ASP.NET MVC Framework, there was a direct relationship between requested URLs and the files on the server hard disk. For example in the Web Forms, a request such as was matched to a “Default.aspx” file on the server… Read More ›
-
4 Basic ways to pass data from Controller to View in ASP.NET MVC
If you develop web applications in ASP.NET MVC, you should definitely learn how to pass your “Model” data to the “View” using the “Controllers”. This post will show you 4 different ways to accomplish that. Start by opening Visual Studio… Read More ›
-
Distributed Transactions in WCF services – Part 3
Enabling distributed transaction propagation in WCF services is a tricky task and several factors and parameters need to be considered. Previous posts showed you that by default distributed transactions aren’t supported even if you enclose your operations you want to… Read More ›
-
Understand ASP.NET Page Life Cycle and Data Control Events
If you are an ASP.NET developer you should definitely understand the Page’s Life Cycle stages and all events raise during that cycle. Server controls also raise their own events and because of the fact that their life cycle is strongly… Read More ›
-
Distributed Transactions in WCF services – Part 2
By default distributed transactions aren’t supported in WCF services in this post is going to prove it. We will continue from the Part 1 from these series, where we created all our service layers. Next thing we have to do… Read More ›
-
Distributed Transactions in WCF services – Part 1
Enabling distributed transactions in WCF services is quite complicated task since several considerations and configurations have to been done. But let’s start from the beginning and ask ourselves why on earth would someone wanted to support transactions in a WCF… Read More ›
-
Managing State and Service Instances in a WCF service : Part 3 – Maintaining State with the PerCall Instance Context Mode
This post will show you how to maintain State with the PerCall Instance Context Mode. This is the third part of the series, discussing how to manage State and Service instances in WCF services. In the first two posts, we… Read More ›
-
Create your own User Control in ASP.NET
As a matter of fact, the build in Web Server controls in ASP.NET, allow you to create very good looking and functional Web pages without any effort. There are several built in data sources which you can use and access… Read More ›
-
LINQ to Objects queries
In previous post we saw the fundamentals around querying data using LINQ . There are three basic LINQ implementations and this post will give you code examples for the main implementation of the Microsoft Language Integrated Query, LINQ to Objects. In… Read More ›
-
LINQ queries Basics
As a developer you must learn that knowing to manipulate data in your applications is a must. There are several different techniques to access data sources such as XML files, text files, excel files, databases etc, and LINQ is one… Read More ›