|
|
maartenba
maartenba
 |
|
Stories submitted by maartenba
|
|
published 19 hours, 31 minutes ago, submitted by
maartenba
5 days, 18 hours ago
blog.maartenballiauw.be — Abstract: "This screencast demonstrates how code can be made more maintainable and testable by delegating binding to client data to the ASP.NET MVC model binder architecture." read more...
add a comment
|
category: ASP.NET | Views: 113
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
7 days, 15 hours ago
blog.maartenballiauw.be — When building an ASP.NET MVC application, chances are that you are using master pages. After working on the application for a while, it's time to spice up some views with jQuery and partial updates. read more...
add a comment
|
category: ASP.NET | Views: 21
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
22 days, 14 hours ago
blog.maartenballiauw.be — When using Team Foundation Server 2008 and Team Build, chances are you are developing unit tests in Microsoft’s test framework which is integrated with Visual Studio 2008. This integration offers valuable data hen a build has been finished on the build server: test run results are published in the Team Foundation Server 2008 data warehouse and can be used to create detailed metrics on how your development team is performing and what the quality of the product being developed is.
Not all software development teams are using Microsoft’s test framework. Perhaps your team is using Team Foundation Server 2008 and creates (unit) tests using NUnit. By default, NUnit tests are not executed by the Team Build server nor are they published in the Team Foundation Server 2008 data warehouse. The following guide enables you to leverage the features Team Foundation Server 2008 has to offer regarding metrics, by customizing the build process with the necessary steps to publish test results. read more...
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
1 month, 2 days ago
blog.maartenballiauw.be — 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: ASP.NET | Views: 30
|
|
tags:
modelbinder, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
1 month, 9 days ago
inq.me — The following is my attempt at creating an "security aware" action link that detects if a user is authorized to click (invoke) the action. The point is to show, hide or disable a link based on the Authorize attribute of the controller.
read more...
add a comment
|
category: ASP.NET | Views: 27
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 11 days ago, submitted by
maartenba
1 month, 11 days ago
blog.maartenballiauw.be — 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: ASP.NET | Views: 405
|
|
tags:
MVC, Sample, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
1 month, 17 days ago
blog.maartenballiauw.be — Yesterday evening, I did a presentation on the ASP.NET MVC framework for VISUG (Visual Studio User Group Belgium). I really hope everyone got a good feel on what the ASP.NET MVC framework is all about and what it takes to build an ASP.NET MVC application. Thank you Pieter Gheysens for inviting me for this talk! And thank you audience for being interested for over an hour and a half!
A recorded version of this presentation will be available later, for the moment you'll have to do with the presentation materials. The download contains the slides, the Hello World application and the testing demo. The CarTrackr application can be found on CodePlex. read more...
add a comment
|
category: ASP.NET | Views: 12
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
2 months ago
blog.maartenballiauw.be — Just after the ASP.NET MVC preview 5 was released, I made a quick attempt to using the ModelBinder attribute. In short, a ModelBinder allows you to use complex objects as action method parameters, instead of just basic types like strings and integers. While my aproach was correct, it did not really cover the whole picture. So here it is: the full picture. read more...
add a comment
|
category: ASP.NET | Views: 22
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 1 day ago, submitted by
maartenba
3 months, 1 day ago
blog.maartenballiauw.be — The new ASP.NET MVC preview 5 featured a number of new HtmlHelper methods. One of these methods is the HtmlHelper.AntiForgeryToken. read more...
add a comment
|
category: ASP.NET | Views: 213
|
|
tags:
ASP.NET, MVC, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 1 day ago, submitted by
maartenba
3 months, 1 day ago
blog.maartenballiauw.be — ASP.NET MVC action methods can be developed using regular method parameters. In earlier versions of the ASP.NET MVC framework, these parameters were all simple types like integers, strings, booleans, … When required, a method parameter can be a complex type like a Contact with Name, Email and Message properties.
This blog post shows you how to use the ModelBinder attribute which allows ASP.NET MVC action methods to accept complex types. read more...
add a comment
|
category: ASP.NET | Views: 221
|
|
tags:
Model, Binding, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 3 days ago, submitted by
maartenba
3 months, 3 days ago
blog.maartenballiauw.be — In earlier ASP.NET MVC previews, form validation was something that should be implemented "by hand". Since the new ASP.NET MVC preview 5, form validation has become more handy. Let me show you how you can add validation in such a ridiculously easy manner. read more...
1 comment
|
category: ASP.NET | Views: 328
|
|
tags:
ASPNETMVC, Validation, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 3 days ago, submitted by
maartenba
3 months, 3 days ago
blog.maartenballiauw.be — If you have been using the ASP.NET MVC framework, you possibly have been searching for something like the classic ASP.NET sitemap. After you've played with it, you even found it useful! But not really flexible and easy to map to routes and controllers.
In this post, Maarten describes how to build a custom sitemap provider which uses ASP.NET MVC route data and AuthorizeAttribute to render MCS sitemap data with security trimming enabled! read more...
add a comment
|
category: ASP.NET | Views: 200
|
|
tags:
SiteMap, Security, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
4 months, 8 days ago
blog.maartenballiauw.be — A while ago, KatrienDG asked me to do some screencasts on the ASP.NET MVC framework for the MSDN Chopsticks page. I've been working on 2 screencasts: an introductory talk to the ASP.NET MVC framework and a Test Driven Development story. Feel free to leave some comments!
This video explains you how to develop ASP.NET MVC web applications using 2 different approaches: regular development and test-driven development. read more...
add a comment
|
category: ASP.NET | Views: 26
|
|
tags:
ScreenCast, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 18 days ago, submitted by
maartenba
4 months, 18 days ago
weblogs.asp.net — The ASP.NET MVC team is in the final stages of finishing up a new "Preview 4" release that they hope to ship later this week. The Preview 3 release focused on finishing up a lot of the underlying core APIs and extensibility points in ASP.NET MVC. Starting with Preview 4 this week you'll start to see more and more higher level features begin to appear that build on top of the core foundation and add nice productivity.
There are a bunch of new features and capabilities in this new build - so much in fact that I decided I needed two posts to cover them all. This first post will cover the new Caching, Error Handling and Security features in Preview 4, as well as some testing improvements it brings. My next post will cover the new AJAX features being added with this release as well.
read more...
2 comments
|
category: ASP.NET | Views: 244
|
|
tags:
ScottGuthrie, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
4 months, 18 days ago
blog.maartenballiauw.be — ScottGu just posted that there's an upcoming preview 4 release of the ASP.NET MVC framework. What I immediately noticed, is that there are actually some community concepts being integrated in the framework, yay! And what's even cooler: 2 of these new features are things that I've already contributed to the community (the fact that it these are included in the MVC framework now could be coincidence, though...). read more...
add a comment
|
category: ASP.NET | Views: 12
|
|
tags:
MVC, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|