aspdev

Stories kicked by aspdev

View Model pattern and AutoMapper in ASP.NET MVC Applications(weblogs.asp.net)

submitted by mvcguymvcguy(265) 2 years, 3 months ago

How to use View Model pattern and AutoMapper in ASP.NET MVC Applications read more...

add a comment |category: |Views: 172

tags: another

Dependency Injection in ASP.NET MVC NerdDinner.com Application(weblogs.asp.net)

submitted by mvcguymvcguy(265) 3 years, 2 months ago

Demonstrating how to apply Dependency Injection in the ASP.NET MVC NerdDinner.com application using Microsoft Unity Application Block. read more...

add a comment |category: |Views: 70

tags: another

Regular Expressions in C# - Practical Usage (dijksterhuis.org)

submitted by martijnmartijn(445) 3 years, 2 months ago

This post touches on four major regular expression subjects: 1. String Comparison - does a string contain a particular sub-string? 2. Splitting a string into segments - we will take an IPv4 address and retrieve its dotted components 3. Replacement - modifying an input string 4. Stricter input validation - how to harden your expressions. read more...

add a comment |category: |Views: 495

tags: another

How to Learn ASP.NET MVC(nayyeri.net)

submitted by sharplifesharplife(4570) 3 years, 2 months ago

As we're getting closer to ASP.NET MVC RTM release, guys in the community are trying to prepare developers for this new framework. In this post Keyvan Nayyeri has explained a step-based procedure on how to learn ASP.NET MVC. Since he is the co-author of Wrox Beginning ASP.NET MVC I think his proposed procedure is useful for all ASP.NET MVC lovers. read more...

1 comment |category: |Views: 373

tags: another

ASP.NET MVC Tip: Add a new T4 template for making MVCContrib Grid Help(weblogs.asp.net)

submitted by aspdevaspdev(30) 3 years, 2 months ago

Demonstrate how you can add a T4 scaffolding template within the “Add View” dialog of the ASP.NET MVC Framework and creating a List scaffolding template for MVCContrib Grid helper component. read more...

add a comment |category: |Views: 111

tags: another

Wanna see ASP.NET MVC RTM-ed? Help test MVC RC2(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 2 months ago

ASP.NET MVC RC2 has just been released, and it includes a pretty big change in the installation process. Before it is RTMed they want to make sure it doesn't break anything, so, help test the installation procedure in as many machine as you can, and report problems. read more...

1 comment |category: |Views: 218

tags: another

ASP.NET MVC Release Candidate 2(haacked.com)

submitted by dmcgivdmcgiv(370) 3 years, 2 months ago

Release Candidate 2 for ASP.NET MVC is now available read more...

1 comment |category: |Views: 321

tags: another

How to run ASP.NET MVC on Windows Azure(aaronlerch.com)

submitted by aaronlerchaaronlerch(1670) 3 years, 6 months ago

A quick how-to on getting ASP.NET MVC up and running on Windows Azure. read more...

add a comment |category: |Views: 505

tags: another

Creating a generic Linq to SQL ModelBinder for the ASP.NET MVC framewo(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 6 months ago

How about this action method, using a Person class which is a Linq to SQL entity type. It accepts a Person object as a parameter. The Person class is a Linq to SQL entity type. It's cleaner not to use the Linq to SQL data context here! Using the ASP.NET MVC ModelBinder infrastructure, I am actually able to bind action method parameters to real objects, based on simple query string parameters like, in this case, id. A custom ModelBinder maps this string id to a real Person instance from my Linq to SQL DataContext. Let me show you how I've created this ModelBinder. read more...

add a comment |category: |Views: 122

tags: another

ASP.NET MVC Tip: Dependency Injection with Unity Application Block (weblogs.asp.net)

submitted by mvcguymvcguy(265) 3 years, 7 months ago

In this post, I demonstrate how you can use dependency injection pattern using Microsoft’s Unity Application Block (Unity). If you want to develop an ASP.NET MVC application fully with Microsoft stack, you can use Unity Application Block to perform dependency injection. read more...

add a comment |category: |Views: 139

tags: another

CarTrackr - Sample ASP.NET MVC application(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 7 months ago

Some people may have already noticed the link in my VISUG session blog post, but for those who didn't... I've released my sample application CarTrackr on CodePlex. CarTrackr is a sample application for the ASP.NET MVC framework using the repository pattern and dependency injection using the Unity application block. It was written for various demos in presentations done by Maarten Balliauw. read more...

add a comment |category: |Views: 660

tags: another

ScottGu: ASP.NET MVC Beta(weblogs.asp.net)

submitted by RemanReman(1970) 3 years, 7 months ago

One of ScottGu´s monster blogposts read more...

1 comment |category: |Views: 393

tags: another

ASP.NET MVC Tip: Dependency Injection with StructureMap(weblogs.asp.net)

submitted by aspdevaspdev(30) 3 years, 7 months ago

In this tip, I demonstrate how you can use the dependency injection with StructureMap within an MVC application. StructureMap is an open source Dependency Injection framework for the .NET platform and has been in use since 2004 .StructureMap supports both setter and constructor injection and also offers testing and diagnostic features such as logging, tracing and wiring of mock objects. read more...

add a comment |category: |Views: 181

tags: another