fry747

Stories kicked by fry747

How to improve HtmlHelper.RenderPartial perf: don’t run in debug mode(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 1 month ago

There has a been a lot of talking on a possible “big design flaw” in ASP.NET MVC: partial view path resolution was not cached. After a bit of testing I found out that caching kicks in only in release mode. So probably all the other tests were run in debug mode. read more...

add a comment |category: |Views: 135

tags: another

Flexible WPF ToolTips via Markup Extensions(hardcodet.net)

submitted by interferencesinterferences(385) 3 years, 1 month ago

Presents a way to display a feature-rich ToolTip in WPF through a single line of XAML. read more...

add a comment |category: |Views: 214

tags: another

A lap around MIX09 keynote announcements(codeclimber.net.nz)

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

Simone collects all the big announcements from MIX09 and provides links to get deeper into the new stuff read more...

add a comment |category: |Views: 364

tags: another

Using Gallio with NCover(blog.andreloker.de)

submitted by alokeraloker(1810) 3 years, 2 months ago

The transition from MbUnit 2.4 to MbUnit 3/Gallio is not as easy as one might expect. This article describes how Gallio can be used with NCover in manual or automatic builds. read more...

add a comment |category: |Views: 310

tags: another

ioDrive, Changing the Way You Code(jdconley.com)

submitted by jconleyjconley(650) 3 years, 2 months ago

A look at the new ioDrive device and how devices like it will drastically change how you think about performance critical data storage applications. read more...

add a comment |category: |Views: 446

tags: another

Free ASP.NET MVC eBook Tutorial - ScottGu(weblogs.asp.net)

submitted by beckelmwbeckelmw(2755) 3 years, 2 months ago

There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now – announcement coming soon). As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it. Over the last few months I’ve been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox. The book is now in production, and will be available to buy in stores soon read more...

2 comments |category: |Views: 802

tags: another

Tips for Managing ASP.NET MVC Views(michaelhamrah.com)

submitted by trimalchiotrimalchio(425) 3 years, 3 months ago

The author gives some tips on managing asp.net mvc views and organizing files withing an asp.net mvc project. Includes suggestions on keeping code out of views. read more...

1 comment |category: |Views: 407

tags: another

Send Emails with .NET and Gmail(gatekiller.co.uk)

submitted by gatekillergatekiller(265) 3 years, 3 months ago

So here's a snippet of code which will send a Transformers themed email using Gmail's SMPT service. read more...

2 comments |category: |Views: 662

tags: another

Good (Date)Times with Json.NET(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 3 months ago

Dates in JSON are hard. The problem comes from the JSON spec itself, there is no literal syntax for dates in JSON. The spec has objects, arrays, strings, integers and floats, but it defines no standard for what a date looks like. This post looks at how Json.NET handles reading and writing custom date formats. read more...

add a comment |category: |Views: 170

tags: another

Subtext 2.1 – A great .NET Open Source Blogging Platform(codezest.com)

submitted by daveschinkeldaveschinkel(1720) 3 years, 3 months ago

If you are looking for a free .NET based open source blogging application, Subtext may be for you or your company. It’s a mature and established blogging framework founded by MS employee Phil Haack. My site is using Subtext and I’ve been very happy with it as compared to solutions such as Telligent Community Server which are not free and are quite heavy and complicated just for running a simple blog for you or your company. Here is the rundown of its current benefits as I’ve experienced: read more...

add a comment |category: |Views: 206

tags: another

DDD: Download an eBook of the Series(devlicio.us)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Casey Charlton has collected all his article series on DDD in a single downloadable PDF file. read more...

add a comment |category: |Views: 327

tags: another

Asynchronous Fire and Forget With Lambdas(haacked.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 4 months ago

Easily fire async method calls using lambdas. read more...

add a comment |category: |Views: 460

tags: another

Training to become a ReSharper Samurai - Code Navigation(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 4 months ago

Another episode in the series on becoming a ReSharper Samurai. In this episode we will focus on various ways to use ReSharper to navigate your code, we take a look at the following features. 1. Navigate to file/type/member 2. Go to definition/declaration 3. Show list of implementers 4. Find usages within code 5. Quick Scrolling to methods/properties 6. Display parameter information 7. much, much more read more...

add a comment |category: |Views: 295

tags: another

Skip the Visual Studio Splash Screen(visualstudiohacks.com)

submitted by javeryjavery(5523) 3 years, 4 months ago

Anything to speed up Visual Studio. read more...

add a comment |category: |Views: 645

tags: another

Introducing a new large scale ASP.NET MVC project framework: Unifico(codeplex.com)

submitted by dvogtdvogt(120) 3 years, 4 months ago

Written in C# against MVC Beta and ASP.NET 3.5.1 the code currently recreates the account ‘component’ of the MVC example template with a simple SQL Repository. The ASP.NET Membership Provider is completely replaced with a component written against the Unifico Framework’s pattern. In this example several things are achieved: * A Service Oriented Architecture (SOA) ready to be remoted through Windows Communication Foundation while using StructureMap to provide dependency injection from WCF. * A repository based data source also protected with dependency injection that is exposed through in a pipes and filters manor. LINQ to SQL is used within a particular repository implementation, but is in no way exposed to the service. * A Model View Controller (MVC) pattern is also used. The only objects returned from a service are models, and all controller activity is within the service itself. Virtual Paths are used to store the views within the component’s assembly. * Utility methods have been developed to provide paging across the service interfaces while leaving the ‘control’ in the hands of the service. The paging methods support multiple filters and multiple sorts within any paging method for a general service. * The framework supports unit testing, however unit tests need to be added specifically for the account service. A project has been setup to show where this is done. * ‘Form’ Models are used for requests to a service to allow all validation for a request to occur within the service. The responsibility of form validation is retained within a service in this manor, and prevents outside code from creating models. read more...

2 comments |category: |Views: 510

tags: another

Pluggable Generic ASP.NET Cache Manager(blog.sb2.fr)

submitted by ethilikethilik(1855) 3 years, 4 months ago

In this article I’ll provide a simple way in order to build a Pluggable Generic ASP.NET Cache Manager. read more...

3 comments |category: |Views: 470

tags: another