I’ve created a simple ASP MVC 4/jQuery Mobile UI web site that helps you with NT Konferenca 2012 lectures schedule if you have a mobile device (now, who […]
Integrating MvcMiniProfiler and LLBLGenPro
MvcMiniProfiler is a lean and mean mini profiler for MVC 3 that shows the profiling results on each page displayed at runtime. Besides the custom steps you can […]
The slides and code from my “Making asp.net mvc applications strong typed” presentation
Yesterday I held a presentation (as the part of Bleeding Edge 2009 conference) on how to make ASP.NET MVC applications strong typed by using CodeSmith and CodeRush (actually […]
Using XtraChart ASP.NET control in an ASP.NET MVC project
The problem These days I am building an ASP.NET MVC project that requires charting. The problem is that there are no native ASP.NET MVC charting controls out there. […]
RenderPartialToString missing in ASP.NET MVC
If I had to pick the most important feature that is missing from ASP.NET MVC it would be RenderPartialToString. This method should render a partial view to a […]
Enhancing strong typed views in ASP.NET MVC
I’ve added new constructs for replacing < % Html.RenderPartial("~/Shared/LogOnUserControl.ascx", model); %> with these < % Html.RenderPartial().Shared.LogOnUserControl(model); %> where model argument is strong typed of course. There […]
Strong typing routes in ASP.NET MVC
Let’s say you have Test action in Home controller like this: public ActionResult Test(int id, int tubo) { return View("Index"); } And you want to create a hyperlink […]
Strong typing views in ASP.NET MVC
Did you ever wonder why do you have to write code like: public ActionResult SomeAction() { … return View("SomeView", model); } instead of this beauty: public ActionResult […]
Partial Output Caching in ASP.NET MVC updated
Thanks to Miha Valenčič I’ve found this great article about Partial Output Caching in ASP.NET MVC. It actually explains how to do ActionResult caching in ASP.NET MVC. It […]
My first ASP.NET MVC pet project – Walls Talking
This week I’ve been extremely busy. Besides my usual work that pays for my living I worked on my first ASP.NET MVC project: Walls talking. I followed ASP.NET […]