crpietschmann

Stories submitted by friends of crpietschmann

New CodePlex project: MvcSiteMap – ASP.NET MVC sitemap provider(blog.maartenballiauw.be)

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

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. To tackle that, last year, somewhere in August, I released a proof-of-concept sitemap provider for the ASP.NET MVC framework on my blog. The blog post on sitemap provider I released back then has received numerous comments, suggestions, code snippets, … Together with Patrice Calve, we’ve released a new version of the sitemap provider on CodePlex: MvcSiteMap. This time I’ll not dive into implementation details, but provide you with some of the features our sitemap provider erm… provides. read more...

add a comment |category: |Views: 190

tags: another

ASP.NET MVC for RoR developers: do as locals do(codeclimber.net.nz)

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

A few days ago, Simon Tokumine, a Ruby On Rails developer from UK who had to build a web app using ASP.NET MVC wrote a nice post that makes a comparison between RoR and ASP.NET MVC. In this post I’m going to give him and to other RoR developers that want (or are forced to) evaluate and eventually use ASP.NET MVC in a project the tips that they need to do as locals do read more...

add a comment |category: |Views: 275

tags: another

Git/Github survival guide(flanders.co.nz)

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

Now that all the cool guys are moving to Git/GitHub, Ivan posts a survival guide, with all the most useful commands of git and how to get started with github/git read more...

2 comments |category: |Views: 322

tags: another

Sample chapter from ASP.NET MVC 1.0 Quickly(blog.maartenballiauw.be)

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

When downloading and installing the ASP.NET MVC framework SDK, a new project template is installed in Visual Studio. This chapter describes how to use the ASP.NET MVC project template that is installed in Visual Studio. All ASP.NET MVC aspects are touched briefly by creating a new ASP.NET MVC web application based on this Visual Studio template. Besides view, controller, and model, new concepts including ViewData—a means of transferring data between controller and view, routing—the link between a web browser URL and a specific action method inside a controller, and unit testing of a controller are also illustrated here. read more...

add a comment |category: |Views: 45

tags: another

A lap around MIX09 keynote announcements(codeclimber.net.nz)

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

Simone collects all the big announcements from MIX09 and provides links to get deeper into the new stuff read more...

add a comment |category: |Views: 364

tags: another

ASP.NET MVC 1.0 has been released!(blog.maartenballiauw.be)

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

To keep up with a good tradition (see here and here), I’m being one of the earliest bloggers having great news on ASP.NET MVC: we are at version 1.0! This means production ready, supported, stable, …! Grab the download at Microsoft.com. read more...

2 comments |category: |Views: 320

tags: another

ASP.NET MVC goes RTM before MIX09(codeclimber.net.nz)

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

Not sure if the release was intentional or just someone that forgot to set the timezone field while publishing the download, but ASP.NET MVC has been RTMed before MIX09. read more...

1 comment |category: |Views: 169

tags: another

Beginning Mocking With Moq 3 - Part 3(codethinked.com)

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

Beginners introduction to mocking using the recently released Moq 3 framework. This is part 3 of the series read more...

add a comment |category: |Views: 158

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

CRUD with ASP.NET MVC (screencast)(blog.maartenballiauw.be)

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

Abstract: "In this video, the new tooling for Visual Studio included in ASP.NET MVC release candidate is demonstrated to create a create, read, update and delete user interface within 15 minutes." read more...

1 comment |category: |Views: 510

tags: another

Joining "IE6: Do NOT want!" campaign(codeclimber.net.nz)

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

IE6 users are still too many... it started with a tweet from a Norwegian web developer, and spread like fire across Europe. Joining the campaign is easy: just add a few lines of code to your site or blog. In this post is how to do it and a little more of background on how to do it. read more...

add a comment |category: |Views: 367

tags: another

Creating an ASP.NET MVC application with Google Gears(blog.maartenballiauw.be)

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

You probably have been working with Gmail or Google Docs. One of the features with those web applications is that they provide an “offline mode”, which allows you to access your e-mail and documents locally, when an Internet connection is not available. When a connection is available, those items are synchronized between your PC and the application server. This offline functionality is built using JavaScript and a Google product called Google Gears. In this blog post, I will be building a simple notebook application using the ASP.NET MVC framework, and afterwards make it available to be used offline. read more...

add a comment |category: |Views: 611

tags: another

Announcing my book: ASP.NET MVC 1.0 Quickly(blog.maartenballiauw.be)

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

Maarten Balliauw announces his new book and provides a large retrospective on the writing process itself. Must read for everyone thinking about writing a tech book! read more...

add a comment |category: |Views: 291

tags: another

Interest in ASP.NET MVC is Rising(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years, 3 months ago

Simone Chiaretta extracts some Google Trends stats to show the rising interest in ASP.NET MVC in the past few months. read more...

add a comment |category: |Views: 335

tags: another

Extending Ninject to inject dependencies into Action Filters (codeclimber.net.nz)

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

In this last post of the series Simone shows the changes he did to Ninject to make it transparent for the developer to inject dependencies into ASP.NET Action Filters. And he also release the small integration library as opensource read more...

add a comment |category: |Views: 114

tags: another

The Curious Case of Software Quality(nayyeri.net)

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

Keyvan writes about the current "principles and qualiy vs common-sense and do the quickest possible solution" and tries to understand why developers tend to prefer the "quick and dirty" vs the "clean and polished" solution. read more...

add a comment |category: |Views: 24

tags: another