Geekpedia Programming Tutorials






DotNetSlackers ASP.NET Articles

DotNetSlackers ASP.NET Articles

The latest .NET news and articles, free blogs to express yourself about .NET and active forums to ask for or give help. DotNetSlackers is constantly updated with content of relevance to .NET developers.

1 2 3 4 5 6 7 8 9 10 11 12
(240 resources in 12 pages)
RSS Feed RSS Feed     KlipFolio Klip Klip     Add to Google    Add to My Yahoo!    Subscribe in NewsGator Online    Add To Windows Live    Subscribe with Bloglines
Visual Studio 2010 and .NET Framework 4 IDE Enhancements –Part2 Programming Tutorials

-----
No votes

Dec 31st 2009

Visual Studio 2010 and .NET Framework 4 IDE Enhancements –Part2

In this article HimaBindu Vejella explains IDE enhancements in Visual Studio 2010 and .NET Framework 4.0.

A WaspKiller Game with Silverlight 3, .NET RIA Services, MVP and MVVM Patterns Part 1 Programming Tutorials

-----
No votes

Dec 29th 2009

A WaspKiller Game with Silverlight 3, .NET RIA Services, MVP and MVVM Patterns Part 1

In this article, we will focus upon the development of the front end of the game using the MVP pattern; in the second part, we will discuss the database related work using the MVVM pattern.

Visual Studio 2010 and .NET Framework 4 IDE Enhancements –Part1 Programming Tutorials

-----
No votes

Dec 24th 2009

Visual Studio 2010 and .NET Framework 4 IDE Enhancements –Part1

In this article HimaBindu Vejella explains IDE enhancements in Visual Studio 2010 and .NET Framework 4.0.

Dynamic Binding in a Static Language, Part 1 Programming Tutorials

-----
No votes

Dec 22nd 2009

Dynamic Binding in a Static Language, Part 1

This article is taken from the book C# in Depth, Second Edition. This segment looks at what it means for code to be dynamic, and the syntax involved in using dynamic typing in C# 4.

Book Review: Professional Twitter Development Programming Tutorials

-----
No votes

Dec 18th 2009

Book Review: Professional Twitter Development

Review of the book "Professional Twitter Development" by Daniel Crenna.

iSlackers – a MonoTouch iPhone Application Programming Tutorials

-----
No votes

Dec 16th 2009

iSlackers – a MonoTouch iPhone Application

This article shows how to use MonoTouch to build an iPhone application with some common features.

Transaction Propagation in WCF Programming Tutorials

-----
No votes

Dec 14th 2009

Transaction Propagation in WCF

In this article, I will explain how to configure transaction propagation in WCF.

jQuery in Action 2nd edition: Queuing functions for execution Programming Tutorials

-----
No votes

Dec 11th 2009

jQuery in Action 2nd edition: Queuing functions for execution

This article is taken from the book jQuery in Action, second edition. This segment shows how you can create your own queue to queue up any functions that you'd like to have executed in serial order. An understanding of jQuery animation is assumed. Presented By: NEC   Ads by Pheedo

DI Patterns: Constructor Injection Programming Tutorials

-----
No votes

Dec 9th 2009

DI Patterns: Constructor Injection

In this article, an excerpt from the book "Dependency Injection in .NET", we will take a detailed look at the DI pattern known as Constructor Injection.

Code Contracts Preview: Interfaces Programming Tutorials

-----
No votes

Dec 7th 2009

Code Contracts Preview: Interfaces

Dino Esposito continues his code contracts series and explains what mixins are.

ASP.NET MVC in Action: The model in depth Programming Tutorials

-----
No votes

Dec 3rd 2009

ASP.NET MVC in Action: The model in depth

In this chapter, we’ll explore a model for a system that helps to manage a small conference, like a Code Camp. The model enables the application to provide an interesting service. Without the model, the application provides no value. We place great importance on creating a rich model with which our controllers can work. Presented By: NEC   Ads by Pheedo

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2 Programming Tutorials

-----
No votes

Dec 2nd 2009

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2

In this two-part series, you will learn how to a typical front end of an E-commerce system using the great Microsoft ASP.NET MVC 1.0 framework. In the first part, we will focus upon the following points: system design, functionality design, architecture design, and database design, etc. in the second part, we will discuss the detailed coding related things.

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1 Programming Tutorials

-----
No votes

Nov 30th 2009

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1

In this two-part series, you will learn how to a typical front end of an E-commerce system using the great Microsoft ASP.NET MVC 1.0 framework. In the first part, we will focus upon the following points: system design, functionality design, architecture design, and database design, etc. in the second part, we will discuss the detailed coding related things.

Installing the Spark View Engine into ASP.NET MVC 2 Preview 2 Programming Tutorials

-----
No votes

Nov 27th 2009

Installing the Spark View Engine into ASP.NET MVC 2 Preview 2

Learn how to integrate the Spark View Engine into a standard ASP.NET MVC 2 application

Tracking access to media resources with HttpHandlers Programming Tutorials

-----
No votes

Nov 25th 2009

Tracking access to media resources with HttpHandlers

This article will discuss what it takes to create an HttpHandler that can keep track of new and existing resources and how many people access those resources.

LINQ to SQL Profiler Programming Tutorials

-----
No votes

Nov 23rd 2009

LINQ to SQL Profiler

In this article we will be taking a look at the new LINQ to SQL Profiler from HibernatingRhinos. This tool gives you a view into the goings on of LINQ to SQL. Not only does it allow you to see the SQL that is generated by your LINQ queries but it also shows you information about your connections, queries, as well as alerting you to all sorts of information that you might otherwise not know about.

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Distributed systems: adding a WCF service layer Programming Tutorials

-----
No votes

Nov 18th 2009

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Distributed systems: adding a WCF service layer

In this article we are going to look at how distributable our current code base is. We will find that even with all the refactoring and modifications that we have done we are still pretty married to a fairly hardwired infrastructure. If one piece of our code requires more resources than any other we can’t simply scale out that bit. Presented By: NEC   Ads by Pheedo

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Hooray – Inversion of Control with StructureMap Programming Tutorials

-----
No votes

Nov 16th 2009

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Hooray – Inversion of Control with StructureMap

In this article we will discuss how we can enhance the power of the Dependency Injection pattern by implementing an Inversion of Control container. We will discuss what an IoC container can be used for and how it works. Then we will look at implementing an Inversion of Control container in our code. We will specifically implement the IoC container StructureMap.

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Hooray – Dependency Injection Programming Tutorials

-----
No votes

Nov 13th 2009

Building a StackOverflow inspired Knowledge Exchange Three Tiers to MVC – Hooray – Dependency Injection

In this article we will address the lack of testability that our current application has. We will do this by making our application conform to the dependency injection pattern. This will allow us to push up all of our dependencies which makes our code considerably more testable than it currently is.

Code Contracts Preview: Assert & Assume Programming Tutorials

-----
No votes

Nov 11th 2009

Code Contracts Preview: Assert & Assume

In this article, I’ll go through the features of side contract-based tools in .NET Framework Code Contracts. In particular, I’ll focus on Assert and Assume methods.

1 2 3 4 5 6 7 8 9 10 11 12
(240 resources in 12 pages)
Advertisement

Free Magazine Subscriptions

Today's Pictures

Today's Video

Other Resources

Latest Download

Latest Icons