Latest MVC stories

Dynamic CSS with Razor and no LESS (part 1)(www.h3mm3.com)

submitted by hemmehemme(164) 3 days, 16 hours ago

When I customize a web site template, I always replace the color palette looking for a consistent set of colors. In this series I’ll tell how I managed to speed up the whole process, by building a set of Razor functions and push the Razor syntax inside a CSS stylesheet. read more...

add a comment |category: |Views: 6

tags: another

Dynamic CSS with Razor (part 2)(www.h3mm3.com)

submitted by hemmehemme(164) 3 days, 16 hours ago

In PART ONE we saw how to create a gradient programmatically in order automate a CSS stylesheet using the Razor engine. We started from a base color in the RGB space and converted it to the HSL space. Given its Lightness we could easily build shades and highlights of the starting color. read more...

2 comments |category: |Views: 198

tags: another

Clearer MVC(msprogrammer.serviciipeweb.ro)

submitted by flyingkickflyingkick(326) 5 days, 2 hours ago

In every application there are some variables that are set by the ASP.NET application( ASP.NET_SessionId cookie ) and some that are set by the programmer( cached data in Application/Session/Cache/Cookies and so on).I wanted every time to have a page where I can “clear” / delete those – and not found. So it’s the Clearer project. read more...

add a comment |category: |Views: 7

tags: another

Ease jQuery UI web development with the fluent Fluqi library(fluqi.apphb.com)

submitted by chittychitty(94) 10 days, 22 hours ago

Fluqi is library for helping configure jQuery UI widgets with a fluent(ish) interface and rendering the control. Details and demos at http://fluqi.apphb.com/ read more...

3 comments |category: |Views: 262

tags: another

Writing ASP.NET MVC bootstrapper with AutoBox(weblogs.asp.net)

submitted by mopenmopen(3596) 11 days, 22 hours ago

This will post will show how you can use AutoBox to easily write a bootstrapper for ASP.NET MVC. I have used the latest version of AutoBox (available from nuget, this version also includes Castle.Windsor internally for managing dependencies rather using its own resolver and does not require interface to type naming convention [IAccountRepository –> AccountRepository]) . read more...

2 comments |category: |Views: 221

tags: another

Clickable Tag Cloud using HTML 5 Canvas Elements(www.dotnetcurry.com)

submitted by mopenmopen(3596) 11 days, 23 hours ago

Learn how to create a tag cloud and in process, learn a bit of HTML5 Canvas. However on the way also see how LINQ and ASP.NET MVC routing can be added to the tag cloud read more...

add a comment |category: |Views: 20

tags: another

Handling Session Timeout Gracefully(www.fairwaytech.com)

submitted by bengriswoldbengriswold(184) 15 days, 14 hours ago

Have you ever been to those sites that show you a nice helpful popup to let you know that your session will expire in a few minutes? You know, the ones that show you a countdown timer, and let you Continue Your Session, or Log Out? Do you want to build one? Noah tells you how with a bit of ASP.NET MVC 3 and jQuery. read more...

add a comment |category: |Views: 11

tags: another

Rendering Microsoft .NET 4.0 3D Charts in ASP.NET MVC(www.danielahill.com)

submitted by resabioresabio(80) 21 days, 8 hours ago

Render Microsoft Charting 3D Charts the easy way in ASP.NET MVC in a straight-forward, cacheable, and easy to implement solution. read more...

add a comment |category: |Views: 15

tags: another

Using RavenDB in Brown-Field ASP.NET MVC projects(www.dotnetcurry.com)

submitted by setconndevpsetconndevp(232) 25 days, 4 hours ago

In this article, we will see how RavenDB can be used as Auto-Save cache in an ASP.NET MVC application. We will explore a use case that is typical of brown-field projects (projects involving enhancements to an existing application), where a handy functionality in an ASP.NET MVC application can be achieved by using RavenDB read more...

2 comments |category: |Views: 140

tags: another

MVC Asynchronous Controller : The Basics(deanhume.com)

submitted by deanomachinodeanomachino(705) 26 days, 2 hours ago

When I first saw the Asynchronous Controllers introduced in MVC 2, I couldn't wait to start playing around. I thought that it would be a really easy to get up and running with a simple example, but after searching online for a few working examples - pretty much all of them used an event based pattern that wasn't easy to understand. In this blog post I am going to run through a really simple example that will show you the basics of Asynchronous Controllers, and show you how easy they really are. read more...

add a comment |category: |Views: 194

tags: another

ASP.NET MVC 3 Real Time Collaborative Apps with SignalR(www.dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 1 month ago

In this article, we’ll create a simple blog app using ASP.NET MVC 3 and SignalR, that will allow multiple collaborators to review the same article in real-time read more...

add a comment |category: |Views: 346

tags: another

Evolution of the Async Controller in ASP.NET MVC(codeclimber.net.nz)

submitted by dpetersondpeterson(3464) 1 month, 1 day ago

Asynchronous operations in ASP.NET MVC have always been left a bit behind. They appeared in ASP.NET MVC 2, remained untouched in v3, but now in MVC 4 (especially in combination with C# 5 and async/await) they reached the same easiness of use of the standard synchronous controller. Check out that absolutely awesome stuff you can do with them now! read more...

add a comment |category: |Views: 196

tags: another

Delayed Download Prompt in ASP.NET MVC 3(spinningtheweb.blogspot.com)

submitted by TronTron(160) 1 month, 3 days ago

Walks through how to implement a delayed download prompt in ASP.NET MVC 3. read more...

add a comment |category: |Views: 4

tags: another

Herding Code 130: Dave Weaver on Loggr – a realtime analytics service (herdingcode.com)

submitted by jongallowayjongalloway(4350) 1 month, 7 days ago

Herding Code podcast with Dave Weaver about Loggr, a complete logging, analytics and notification service built with ASP.NET MVC, SignalR, and MongoDB. read more...

3 comments |category: |Views: 79

tags: another

Essential guide to ASP.NET MVC3 performance(leoncullens.nl)

submitted by AvalaxyAvalaxy(145) 1 month, 7 days ago

The .NET CLR can give your web application a significant performance boost compared to other platforms such as PHP due to it's compiled nature. Not only does your .NET code perform better because it's more low-level, it also comes with good support for parallel programming. This guide will not explain the basics of a responsive and fast web application by talking about CSS minifying, sprites, content delivery networks, etc. Instead this guide will be an essential guide for making sure you don't miss any features that can enhance the performance of your ASP.NET MVC3 application. read more...

2 comments |category: |Views: 414

tags: another

MVC 3: Accessing the RouteData inside of your code(www.webistrate.com)

submitted by endyourifendyourif(5) 1 month, 7 days ago

You want to perform some dynamic processing in your code and you need to determine either the name of the current controller or the current action or both. read more...

add a comment |category: |Views: 2

tags: another