Search this site
My StackExchange profile
-
Recent posts
- Using a FileStreamResult with a MemoryStream in ASP.NET MVC 3
- An HtmlHelper to display if a field is required or not in ASP.NET MVC 3
- Hosting Nancy from a console application
- Building a photoblog with Nancy and Simple.Data Part 7: The archives
- Building a photoblog with Nancy and Simple.Data Part 6: Adding comments
Tags
Categories
Archives
Blogroll
Links
Tag Archives: mvc
Using a FileStreamResult with a MemoryStream in ASP.NET MVC 3
I was playing around with EO.Pdf 2011.2 for .NET from Essential Objects to see how easy it would be to use HTML and Razor to generate a report and convert it to a PDF file. EO.Pdf allows you to save … Continue reading
Registering a namespace for all Razor views
When you want use your own code generating classes like HtmlHelpers in a Razor view, you can register the namespace at the beginning of the Razor view like this: @using My.Custom.Namespace But what when you want to use a certain … Continue reading
Is formatting strings in a View evil?
Yesterday, I ran into an interesting post by Chris Brandsma about his personal rules when dealing with Views in ASP.NET MVC. While he sure has some valid points, I don’t agree with everything he says in that post. Apparently, I’m … Continue reading
The plans for 2010
There is an update to this post available here: http://www.kristofclaes.be/blog/2010/06/17/the-plans-for-2010-update/. In the wonderful world of IT there is an such abundancy of things to do and discover that it is often hard to focus on just a few them. Most … Continue reading
ASP.NET MVC with Ninject 2
In his book Pro ASP.NET MVC Framework, author Steven Sanderson takes three chapters to explain how build an e-commerce application in ASP.NET MVC. Because Steven is a big fan of Domain-Driven Development (DDD) he uses the opportunity to explain how … Continue reading