dclevitt

Stories kicked by dclevitt

Choosing the Right Garbage Collector Settings for Your Application(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 4 years ago

In this post I discuss the gcConcurrent and gcServer settings which allow you to exercise some control how the Garbage Collector operates. Tuning the garbage collector to the specific context of the particular application can significantly improve the performance of both non-threaded and multi-threaded applications. read more...

add a comment |category: |Views: 223

tags: another

Dependency Injection Example - Constructor Injection and Service Orien(bradygaster.com)

submitted by bradygasterbradygaster(4897) 4 years, 4 months ago

An attempt to understand DI by implementing a testable custom dependency injection framework. read more...

1 comment |category: |Views: 30

tags: another

MVP vs MVC(blog.vuscode.com)

submitted by malovicnmalovicn(1590) 4 years, 5 months ago

With all the noise around MVC.NET this days, question what is the difference between MVC and MVP is asked quite frequentlly. Check out this blog post for some answers on that question read more...

4 comments |category: |Views: 281

tags: another

Rob Conery » ASP.NET MVC: PagedList<T>(blog.wekeroad.com)

submitted by simonebsimoneb(5450) 4 years, 5 months ago

In some of his demos, ScottGu used a method that we didn’t include in the MVCToolkit called “PagedList<T>”, which basically pages a Linq query. I’m hoping to include this in the next drop of the Toolkit, but until then, I have the code for you :). Just drop this into a code file on your site, the Extension method will be picked up by any class “using” System.Web.Mvc. read more...

add a comment |category: |Views: 447

tags: another

Get a free copy Visual Studio 2008 Pro - REALLY!(hanselman.com)

submitted by whoisvaibhavwhoisvaibhav(1000) 4 years, 5 months ago

Its not very straightforward and not everyone may be able to get it, but MS is going to give full Visual Studio 2008 Pro licenses to those who attend any of the events that it is organizing. Its that simple. read more...

14 comments |category: |Views: 859

tags: another

SubSonic - Stored Procedure Tutorial(scribesonic.com)

submitted by montymonty(2575) 4 years, 6 months ago

Subsonic makes working with stored procedures and your database simple. Today we'll discuss the basics in getting SubSonic to allow you to very easily interface with stored procedures and your data store. read more...

add a comment |category: |Views: 2375

tags: another

SubSonic LoadFromPost Method(weblogs.asp.net)

submitted by kevnzkevnz(858) 4 years, 6 months ago

A time saving tip for SubSonic. read more...

6 comments |category: |Views: 23

tags: another

.NET Framework 3.5 Is Shared Source(weblogs.asp.net)

submitted by benrickbenrick(1020) 4 years, 7 months ago

Microsoft's .NET Framework 3.5 is going to be released open source. read more...

26 comments |category: |Views: 152

tags: another

Keeping Pulse on Your Site With ASP.NET 2.0 Health Monitoring(aspnetresources.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 7 months ago

One of the best, yet often overlooked, features of ASP.NET 2.0 is health monitoring. When it is absolutely essential to be notified of any problems with your web application, and this is where health monitoring comes in handy. read more...

add a comment |category: |Views: 10

tags: another

.NET 2.0 Data Structures(msdn2.microsoft.com)

submitted by senfosenfo(881) 4 years, 8 months ago

The .NET 2.0 framework includes many data structures that go unnoticed by many developers. Additionally, there are very powerful data structures that are not part of the base class library, but are very efficient when used in the right situation. This is a great article that (re)demonstrates a very important topic that many of us have forgotten since college. read more...

add a comment |category: |Views: 36

tags: another

Unit Test Web Code Without A Web Server Using HttpSimulator(haacked.com)

submitted by usshermussherm(5285) 4 years, 11 months ago

Haacked introduces a new HttpSimulator class that he put together to help you unit test your asp.net code. Fluent interface, access to session and application variables, a working MapPath... wow! read more...

add a comment |category: |Views: 75

tags: another