Skip to content

Righthand Blog

About .NET/C#, Xamarin, Flutter and other fun technologies

  • Righthand Dataset Debugger Visualizer
.net / .net 4.0 / asp.net mvc / Slovenia / VS 2010 / WCF

NT Konferenca 2012 lectures schedule for mobile devices

Posted on: May 17, 2012March 29, 2020

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 […]

.net 4.0 / ASP.Net / asp.net mvc / LLBLGenPro / ORM

Integrating MvcMiniProfiler and LLBLGenPro

Posted on: July 24, 2011March 29, 2020

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 […]

.net / asp.net mvc / CodeRush / CodeSmith / DXCore / DXCore plugin / Presentation / Visual Studio / VS 2008

The slides and code from my “Making asp.net mvc applications strong typed” presentation

Posted on: October 2, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc / DevExpress

Using XtraChart ASP.NET control in an ASP.NET MVC project

Posted on: May 13, 2009March 29, 2020

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. […]

asp.net mvc

RenderPartialToString missing in ASP.NET MVC

Posted on: April 30, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc / CodeRush

Enhancing strong typed views in ASP.NET MVC

Posted on: April 22, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc / CodeRush / DevExpress / DXCore / DXCore plugin / VS Add In

Strong typing routes in ASP.NET MVC

Posted on: April 21, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc / CodeSmith

Strong typing views in ASP.NET MVC

Posted on: April 18, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc

Partial Output Caching in ASP.NET MVC updated

Posted on: March 21, 2009March 29, 2020

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 […]

.net 3.5 / asp.net mvc

My first ASP.NET MVC pet project – Walls Talking

Posted on: March 20, 2009March 29, 2020

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 […]

Niche Blog by Fahim Murshed