austegard

Stories kicked by austegard

Simple way to cache objects and collections for greater performance(msmvps.com)

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

implementing caching is tricky and monotonous when you have to do it for many classes. Your data access layer gets a whole lot of code that deals with caching objects and collection, updating cache when objects change or get deleted, expire collections when a contained object changes or gets deleted and so on. The more code you write, the more maintenance overhead you add. Here I will show you how you can make the caching a lot easier using Linq to SQL and my library AspectF. read more...

add a comment |category: |Views: 11

tags: another

Client Templating with jQuery(west-wind.com)

submitted by rstrahlrstrahl(7226) 3 years, 7 months ago

Client templating in Javascript can be a great tool to reduce the amount of code you have to write to create markup content on the client. There are a number of different ways that templating can be accomplished from a purely manual approach to a full templating engine. In this entry I'll look at several different approaches. read more...

add a comment |category: |Views: 327

tags: another

jQuery and Microsoft(weblogs.asp.net)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

ScottGu announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license. read more...

1 comment |category: |Views: 380

tags: another

ASP.NET MVC Tip #3 - Provide Explicit View Names when Unit Testing(weblogs.asp.net)

submitted by swaltherswalther(975) 3 years, 11 months ago

In this tip, Stephen Walther explains how you can unit test whether a controller action returns a particular view. He recommends that you be explicit about view names when you plan to create unit tests. read more...

add a comment |category: |Views: 8

tags: another

Create an ASP.NET MVC Action Result that returns Excel (weblogs.asp.net)

submitted by swaltherswalther(975) 3 years, 11 months ago

In this tip, Stephen Walther shows you how to create a custom action result that you can return from an ASP.NET MVC controller action. This action result generates a Microsoft Excel Document from a LINQ to SQL query. read more...

add a comment |category: |Views: 307

tags: another

ASP.NET MVC Tip #1 - Creating New HTML Helpers with Extension Methods(weblogs.asp.net)

submitted by swaltherswalther(975) 3 years, 11 months ago

In this tip, Stephen Walther shows you how you can create two new HTML Helpers that you can use within an ASP.NET MVC View. I show you how you can use extension methods to create new HTML Helpers for displaying bulleted and numbered lists. read more...

1 comment |category: |Views: 212

tags: another

MSAjax ClientScript - unpublished validation function(codebetter.com)

submitted by DevTheoDevTheo(495) 5 years, 1 month ago

Jay delves into a nifty little gem - a parameter validation function found within the MS Ajax Clientscript framework. read more...

add a comment |category: |Views: 3

tags: another

Subsonic 2.0 Beta 1 is ready.(blog.wekeroad.com)

submitted by HaackedHaacked(5105) 5 years, 1 month ago

Rob Conery and team just announced the beta 1 release of Subsonic 2.0. 2.0 introduces some heavy duty perf improvements as well as better querying and improvements to the scaffold control. read more...

3 comments |category: |Views: 3

tags: another

More Fun with C# Iterators: Take, Skip, TakeWhile, SkipWhile(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 2 months ago

Demostration of implementing a couple features of .Net 3.0 LINQ using just .Net 2.0 read more...

add a comment |category: |Views: 865

tags: another