VaNzAn

Stories kicked by VaNzAn

Joining "IE6: Do NOT want!" campaign(codeclimber.net.nz)

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

IE6 users are still too many... it started with a tweet from a Norwegian web developer, and spread like fire across Europe. Joining the campaign is easy: just add a few lines of code to your site or blog. In this post is how to do it and a little more of background on how to do it. read more...

add a comment |category: |Views: 367

tags: another

Ruby inspired C# Extension Methods for natural DateTime operations(codeplex.com)

submitted by spavkovspavkov(1708) 3 years, 3 months ago

FluentDateTime is a open source library of Ruby inspired C# Extension Methods for easier and more natural DateTime handling and operations in .NET that allows you to write code like this: DateTime.Now + 1.Week() + 3.Days + 14.Minutes(); 3.Days().Ago(); 5.Days().After(new DateTime(2000, 1, 1)); DateTime.Now.NextDay(); DateTime.Now.WeekAfter(); DateTime.Now.Midnight(); DateTime.Now.SetTime(11, 55, 0); read more...

add a comment |category: |Views: 556

tags: another

Using Enums in List Controls(west-wind.com)

submitted by decarufedecarufe(959) 3 years, 3 months ago

Convert data to and from enums. read more...

add a comment |category: |Views: 411

tags: another

Working With ASP.Net MVC Part 4 - Controllers, ControllerActions, and (dev102.com)

submitted by razamitrazamit(4566) 3 years, 3 months ago

In this post we’ll look the first of two parts that really hold our application together, the Controller. In the next post we’ll cover the View and how it ties into the Controller. read more...

add a comment |category: |Views: 200

tags: another

Improve your NHibernating with NHProf(hiberlog.wordpress.com)

submitted by mark_Wmark_W(145) 3 years, 3 months ago

A short review of experience using Hibernate profiling/debugging tool NHProf. read more...

add a comment |category: |Views: 226

tags: another

Announcing my book: ASP.NET MVC 1.0 Quickly(blog.maartenballiauw.be)

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

Maarten Balliauw announces his new book and provides a large retrospective on the writing process itself. Must read for everyone thinking about writing a tech book! read more...

add a comment |category: |Views: 291

tags: another

Use jQuery to Show a Link’s Address After its Text When Printing In IE(beckelman.net)

submitted by JamesEggersJamesEggers(1250) 3 years, 3 months ago

I found a cool trick in a post by Remy Sharp that appends the address of a hyperlink to the end of the link’s text when the page is printed. Unfortunately the trick only works in browsers that support the CSS2 pseudo selector :after. Firefox, Safari, Chrome*, Opera and now IE8 all support the selector. IE6 and IE7 don’t though and that is a huge percentage of users. I came up with a way to achieve the same thing with IE6 and IE7 using jQuery and the proprietary IE events onbeforeprint and onafterprint though. read more...

add a comment |category: |Views: 168

tags: another

ASP.NET MVC Result Caching(codeproject.com)

submitted by jorgebgjorgebg(116) 3 years, 3 months ago

Different approach on MVC Caching. Cache the ActionResult through an action filter, without affecting the Session or other non-deterministic data to be shown in the View. read more...

add a comment |category: |Views: 273

tags: another

Interest in ASP.NET MVC is Rising(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years, 3 months ago

Simone Chiaretta extracts some Google Trends stats to show the rising interest in ASP.NET MVC in the past few months. read more...

add a comment |category: |Views: 335

tags: another

Taking a look at how to separate out your WCF service project into mul(dimecasts.net)

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

Taking a look at how to separate out your WCF service project into multiple parts. We take a look at how you can put your entities in one project and the interfaces into another. This allows for better separation of concerns. read more...

add a comment |category: |Views: 181

tags: another

Getting Mono and Visual Studio to play nice together(chriscyvas.wordpress.com)

submitted by ccyvasccyvas(635) 3 years, 3 months ago

The goal was to get some Mono project templates working with Mono assemblies and the Mono compiler in Visual Studio. The trick was to do it in a way that would be able to survive upgrades of Mono installations. read more...

add a comment |category: |Views: 300

tags: another