This is the second part in a series of posts where I build a forum application. The first part can be found here.
One of the most important things, atleast in my oppinion, while building a application is to have a good model to work with. A bad model can cause alot of problems while developing a ap ...
Building a forum application, Part 1
I have decided to build a forum application. My goal is to build a generic forum that people can use and learn from. I want to use the latest techniques and tools to build a good application base that is easy to extend with the functionality that you require. I will post here from time to time as I ...
Javascript in my usercontrols at the bottom please
So the other day I sat down to optimize my latest part of a page that I been working on and I realized that I had some javascript in a usercontrol. In the javascript I called .net functions like ResolveUrl and i didn't want the cost of yet another request with the thoughts of all my jquery plugins.
...
Extended jMonthCalendar with drag n drop
For a few weeks me and Magnus (the other guy that is blogging here) have been working on a intranet. Mostly for learning purposes. The other week we needed a calendar to let users have a overlook at their schedule. We started googling a bit and found a great jquery plugin called jMonthCalendar. This ...
Nested linq queries
So linq queries are something I like, but there was something I didn't knew how I should do a nested query. But a few days ago I saw an example of it so thought i should write something about it.
Exemple:
from item in list from subitem in item.SubItems select subitem
Hope somebo ...
Hello World
As for Jakobsson this is also my first blog post and I am a programmer through my whole heart and soul, which i think explains my headline. The Similarities between me an Jakobsson doesn't end there because I am also from the Varberg and we have gone to the same school and share the programming intr ...
Mvc, validate controller action input
This post will not be about another validation framework, as there is allready many good once out there. Instead I will talk about how to simplify the use of a validation framework in a asp.net mvc application.
As I have told you before I like to keep my controller action simple and clean. Any row ...
Asp.net mvc captcha validation made easy
When I was working on this blog a few weeks ago I realized that I might need a captcha of some sort for my comments and for the contact page. I figured that I would probably need to use it for a few more projects in the future, so I decided to try and create some kind of generic way of creating and ...
Page selector html helper
When I develop asp.net mvc applications I like to use the mvc-feature library (Microsoft.Web.Mvc), because then you have generic overloads for the Html.ActionLink etc. This means that you eliminate a few more "magic strings" and you can use lambdas to point at the action you want to execut ...
First post and Asp.Net MVC 1.0 released!
Hello!
This is my first blog post ever. I´m a swedish .net developer from a town called Varberg on the west coast. This blog will primary be a tecnical blog mostly about the .net platform. But I guess I´ll throw some other stuff in aswell from time to time.
Because the Asp.Net MVC fr ...