DotNetShoutout - Stories tagged with ASP.NET MVC 2.0
3
Shouts

dynamic, Why not? - Context is King

published 719 days, 20 hours, 32 minutes ago posted by thangchungthangchung 720 days, 12 hours, 2 minutes ago
Thursday, June 02, 2011 5:51:24 AM GMT Wednesday, June 01, 2011 2:21:41 PM GMT
In these days, people begin to expertise some new features in .NET 4.0. And I am same to them as well. One of features I like and write to this post is dynamic keyword. It is not new, at least in PHP, Python, Ruby... But in .NET world, I think it is new and ship to .NET 4.0 as a default. And some of projects are ported to .NET based on DLR as IronPython, IronRuby. We can use dynamic keyword in anywhere in our project. How do you think about it? So dynamite, isn’t it? :D. Some of people are didn’t like it... (more)
category: Architecture | clicked: 26 | 1 comment | | source: weblogs.asp.net
tags: ASP.NET MVC 2.0, dynamic keyword
5
Shouts

Required CheckBox validation in ASP.Net MVC 2 onwards

published 849 days, 13 hours, 40 minutes ago posted by http://www.google.com/profiles/dougrathbonehttp://www.google.com/profiles/dougrathbone 852 days, 7 minutes ago
Sunday, January 23, 2011 12:43:41 PM GMT Friday, January 21, 2011 2:16:44 AM GMT
Having forms with checkboxes that require users to check them to be valid is a pretty common phenomenon on the internet today, however when thinking about this in terms of ASP.Net MVC it can not always be obvious what the best approach to take is. Thankfully the ASP.Net MVC team gave us the support to create a really simple solution when they added inheritable validation classes to the framework. (more)
category: Web Dev | clicked: 4 | comment | | source: www.diaryofaninja.com
tags: ASP.NET MVC 3, ASP.NET MVC 2.0, C#
6
Shouts

Exploring MongoDB and an N-Tier MVC 2.0 architecture using C#

posted by dotnetconvodotnetconvo 1021 days, 13 hours, 43 minutes ago
Wednesday, August 04, 2010 12:40:50 PM GMT
This is basically my experience setting up and creating an application to create a blog with posts and comments using MongoDB and ASP.NET MVC 2.0. I'll start by giving a brief description, in layman's terms, as to what MVC is all about. (more)
category: Web Dev | clicked: 27 | 1 comment | | source: www.dotnetconvo.com
tags: ASP.NET MVC 2.0, C#, N-Tier, MongoDB, Architecture
5
Shouts

ASP.NET MVC 2 - Linking between Areas | MIKE

published 1075 days, 16 hours, 5 minutes ago posted by http://mchambaud.myopenid.com/http://mchambaud.myopenid.com/ 1076 days, 11 hours, 16 minutes ago
Friday, June 11, 2010 10:18:48 AM GMT Thursday, June 10, 2010 3:08:02 PM GMT
ASP.NET MVC 2 – Linking between Areas If you’ve been playing with MVC 2 you might be wondering how to make ActionLinks between areas. I know it took me a good half hour to figure out! (more)
category: Web Dev | clicked: 0 | comment | | source: helios.ca
tags: ASP.NET MVC 2.0
15
Shouts

Introducing the MVC Music Store - MVC 2 Sample Application and Tutorial - Jon Galloway

published 1103 days, 15 hours, 1 minute ago posted by jantujantu 1104 days, 13 hours, 31 minutes ago
Friday, May 14, 2010 11:22:51 AM GMT Thursday, May 13, 2010 12:52:57 PM GMT
Introducing the MVC Music Store - MVC 2 Sample Application and Tutorial A couple weeks ago we did a soft release of a new ASP.NET MVC 2 Tutorial and Sample Application I’ve been working on over the past few months, the MVC Music Store. The source code and an 80 page tutorial are available on CodePlex. I’m also working on a video tutorial series for the ASP.NET website which will walk through building the application. After that, it’s time to talk about a feature length film and a worldwide MVC Music Sto... (more)
category: Web Dev | clicked: 7 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 2.0, CodePlex, ASP .NET
7
Shouts

ASP.NET MVC 2 Model Validation | MIKE

published 1190 days, 15 hours, 5 minutes ago posted by http://mchambaud.myopenid.com/http://mchambaud.myopenid.com/ 1191 days, 9 hours, 21 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 5:02:27 PM GMT
ASP.NET MVC 2 Model Validation In projects I usually work on, we always use a data validation framework. But now in ASP.NET MVC 2 you can do it just as you would using a framework. You need to write your model with the proper validation attributes. using System; using System.ComponentModel.DataAnnotations; namespace FunWithMvc2RC2 { public class Test { // StringLenght [StringLength(5, ErrorMessage = "Maximum 25 Characters")] public string StringLength { get; set; } ... (more)
category: Web Dev | clicked: 4 | comment | | source: helios.ca
tags: ASP.NET MVC 2.0, MVC 2 Model Validation, MVC 2
5
Shouts

ASP.NET MVC Complex Object ModelMetaData Issue

published 1197 days, 10 hours, 40 minutes ago posted by ironkittenironkitten 1197 days, 21 hours, 20 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:03:51 AM GMT
Tuesday, February 09, 2010 5:06 AM kazimanzurrashid ASP.NET MVC Complex Object ModelMetaData Issue One of the exciting feature of ASP.NET MVC is(?) auto generating the view of the model with DisplayForModel/EditorForModel statement, it gives a nice extension point for the application developers to customize the view. But in the latest release (MVC2 RC2), it looks like the feature is no longer available. No, those methods are still available, ... (more)
category: Web Dev | clicked: 3 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 2.0
10
Shouts

Setting Up IoC in ASP.NET MVC using Castle Windsor « MVC#

published 1226 days, 10 hours, 49 minutes ago posted by ali62bali62b 1228 days, 16 hours, 26 minutes ago
Monday, January 11, 2010 3:34:18 PM GMT Saturday, January 09, 2010 9:58:05 AM GMT
Abstract: This post gathers information needed to setting up Inversion of Control (IoC) in an ASP.NET MVC application using Castle Windsor. (more)
category: Web Dev | clicked: 2 | comment | | source: mvcsharp.wordpress.com
tags: IoC, ASP.NET MVC 2.0, Castle Windsor
8
Shouts

Code clarity: MVC 2.0 Client validation exposed

published 1240 days, 13 hours, 4 minutes ago posted by http://code-clarity.blogspot.com/http://code-clarity.blogspot.com/ 1242 days, 10 hours, 12 minutes ago
Monday, December 28, 2009 1:19:46 PM GMT Saturday, December 26, 2009 4:11:45 PM GMT
Yeah, data annotation and rules in model is cool. But I have found no info about how to add client validation rules from code, it can be useful in many cases. (more)
category: Web Dev | clicked: 1 | comment | | source: code-clarity.blogspot.com
tags: Validation, ASP.NET MVC 2.0, DataAnnotation
15
Shouts

HerdingCode - Episode 66: Brad Wilson and Scott Densmore on iPhone Development

published 1245 days, 5 hours, 41 minutes ago posted by mithumithu 1246 days, 8 hours, 3 minutes ago
Wednesday, December 23, 2009 8:42:22 PM GMT Tuesday, December 22, 2009 6:20:26 PM GMT
What do Brad Wilson and Scott Densmore have in common? They’re expert .NET developers, a couple of Mac fanboys, and they’re both joining the guys on this week’s episode of Herding Code. Listen in while Brad and, yet another, Scott talk about the Mac, Windows, and the ins and outs of iPhone development: In case you’ve never heard of them, Brad and Scott D introduce themselves and share their interest in the Mac and iPhone development. Brad and Scott D talk about Objective-C as it compares to other lan... (more)
category: Podcast | clicked: 0 | comment | | source: herdingcode.com
tags: .NET, ADO.NET, ASP.NET MVC 2.0, iPhone, C#, HerdingCode, MVC
5
Shouts

ASP.NET MVC 2 RC is released today - Amit's Blog

published 1249 days, 16 hours, 9 minutes ago posted by iftekharahmedamitiftekharahmedamit 1250 days, 8 hours, 26 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 5:57:14 PM GMT
Release Candidate of ASP.NET MVC 2 is released today. Brief Description ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NE... (more)
category: Web Dev | clicked: 1 | comment | | source: amitbd.com
tags: ASP.NET MVC, ASP.NET MVC 2.0, ASPNETMVC, ASP.NET MVC 2, MVC 2, MVC, ASP.NET
11
Shouts

ASP.NET MVC 2 RC and My List of Requirements - Kazi Manzur Rashid

published 1247 days, 12 hours, 38 minutes ago posted by iftekharahmedamitiftekharahmedamit 1250 days, 15 hours, 20 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Friday, December 18, 2009 11:03:47 AM GMT
As you already know ASP.NET MVC 2 hits the RC, as far as I know this is the last release before the final. There has been quite a few things that the ASP.NET MVC team has added since the v1.0. I know people says human nature is “More you get the more you want”, but the requirements that I am presenting here is not new, instead these are the enhance... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASP.NET MVC 2.0, ASPNETMVC, ASP.NET MVC 2, MVC, ASP.NET
12
Shouts

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

published 1267 days, 7 hours, 23 minutes ago posted by StevesSteves 1269 days, 7 hours, 35 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 6:48:50 PM GMT
After speaking with Ben Scheirman and Javier Lozano on DotNetRadio.com I have to admit that I was more than a little curious about the Spark View Engine. I have heard quite a bit about it. But when people of that caliber make statements such as "the Spark View Engine should be the d... (more)
category: Web Dev | clicked: 2 | comment | | source: dotnetslackers.com
tags: ASP.NET MVC, Spark View Engine, ASP.NET MVC 2.0, ASPNETMVC, ASP.NET MVC 2 Preview 2, ASP.NET MVC 2, MVC 2, MVC, ASP.NET