cribe

Stories kicked by cribe

Don't use Response.End() with OutputCache(west-wind.com)

submitted by bahadornbahadorn(340) 3 years ago

Very good post about OutputCache in APS.NET read more...

add a comment |category: |Views: 28

tags: another

Learning about the Strategy Design Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a how you can use the Strategy Design Pattern in your applications. We will start off by looking at code which does not utilize this pattern and then take a look at how we can refactor the code base to utilize the Strategy Pattern. read more...

add a comment |category: |Views: 344

tags: another

ASP.NET MVC Best Practices (Part 1) - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by mithumithu(570) 3 years, 1 month ago

In this post, I will share some of the best practices/guideline in developing ASP.NET MVC applications which I have learned in the hard way. I will not tell you to use DI or Unit Test instead I will assume you are already doing it and you prefer craftsmanship over anything. read more...

add a comment |category: |Views: 386

tags: another

SubSonic to Acquire NHibernate(blog.wekeroad.com)

submitted by cyberbloxcyberblox(100) 3 years, 1 month ago

Hanalei, HI – April 1, 2009: SubSonic (http://subsonicproject.com), a data access tool and “Super High-fidelity Batman Toolbelt” (according to its owner, Rob Conery), is set to acquire NHibernate, a much larger data access technology built on the .NET platform. The terms of the deal have not yet been announced but the stage has been set for what many see as a hostile transition of ownership. read more...

11 comments |category: |Views: 379

tags: another

Beginning Mocking With Moq 3 - Part 4(codethinked.com)

submitted by jcoffmanjcoffman(370) 3 years, 1 month ago

into to mocking using moq libary, part 4 read more...

add a comment |category: |Views: 151

tags: another

Another look at Sharp Architecture: Validation, Design Decisions and A(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking another look at Sharp Architecture, but this time we will be looking at data validation, design decisions and automapping read more...

add a comment |category: |Views: 395

tags: another

MVC Storefront is now Kona : Screencast(blog.wekeroad.com)

submitted by ingenutrixingenutrix(120) 3 years, 1 month ago

MVC Storefront – changes directions to a flexible, pluggable Open Source community application. This screencast is all about that change and what’s become of the MVC Storefront. read more...

1 comment |category: |Views: 664

tags: another

$(document).ready() and pageLoad() are not the same!(encosia.com)

submitted by gt1329agt1329a(7849) 3 years, 2 months ago

A few examples about how $(document).ready() and pageLoad() differ, practical examples of when both are useful, and a third alternative that is more suitable in some cases. read more...

3 comments |category: |Views: 415

tags: another

M is to DSL as Drag & Drop is to programming(ayende.com)

submitted by LordLord(3737) 3 years, 2 months ago

I see M as a whole lot of effort trying to optimize something that is really not that interesting, complex or really very hard. I look at the M language, the way that you worked with, the tooling and the API and I would fully agree that it is a nice parser generator. What it is not, I have to say, is a DSL toolkit. It is just one, small, part of building a DSL. And, to be perfectly honest, M is the drag & drop of DSL. read more...

add a comment |category: |Views: 200

tags: another

ASP.NET MVC 1.0 has been released!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 2 months ago

To keep up with a good tradition (see here and here), I’m being one of the earliest bloggers having great news on ASP.NET MVC: we are at version 1.0! This means production ready, supported, stable, …! Grab the download at Microsoft.com. read more...

2 comments |category: |Views: 320

tags: another

ASP.NET MVC goes RTM before MIX09(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 2 months ago

Not sure if the release was intentional or just someone that forgot to set the timezone field while publishing the download, but ASP.NET MVC has been RTMed before MIX09. read more...

1 comment |category: |Views: 169

tags: another

ASP.NET MVC 1.0 released(microsoft.com)

submitted by alexandrul.ctalexandrul.ct(475) 3 years, 2 months ago

ASP.NET MVC 1.0 RTM is released read more...

7 comments |category: |Views: 458

tags: another

FizzBin - The Technical Support Secret Handshake(hanselman.com)

submitted by hismightinesshismightiness(549) 3 years, 2 months ago

I hate that 5 minute to 5 hour long "ramp up" when I'm on the phone with any kind of technical support as they realize that we both know what we're doing. Or at least, one of us does. read more...

1 comment |category: |Views: 187

tags: another

Optimize ASP.NET Membership Stored Procedures for greater speed and sc(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 2 months ago

ASP.NET Membership stored proc are not fine tuned for high load. So, under heavy load - the major tables like aspnet_Users and aspnet_Membership produces lock contention and transaction deadlocks. Learn how to solve this. read more...

add a comment |category: |Views: 293

tags: another

Beginning Mocking With Moq 3 - Part 3(codethinked.com)

submitted by simonechsimonech(10.1k) 3 years, 2 months ago

Beginners introduction to mocking using the recently released Moq 3 framework. This is part 3 of the series read more...

add a comment |category: |Views: 158

tags: another

Unit Testable HttpModule and HttpHandler - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 2 months ago

With the new System.Web.Abstraction namespace we can now easily write unit testable HttpModule and HttpHandler. In this post, I will show you how to write unit testable HttpModule and HttpHandler. Prior the release of System.Web.Abstraction the problem with unit testing of these web infrastructural items is HttpContext, it is sealed, no way to mock it with Rhino or Moq. The only option is to create the wrapper objects of these non-mockable objects but it has a very long tail like HttpRequest, HttpResponse, HttpSessionState, HttpServerUtility etc etc. And this is the exact thing that the System.Web.Abstraction provides, all wrappers around the non-mockable objects of HttpContext. But still, both the HttpModule and HttpHandler depends upon the original HttpContext which I hope will change in ASP.NET 4.0. till then we need to create a super layer for making it Unit Testable. read more...

add a comment |category: |Views: 274

tags: another