Stories recently tagged with '.net2.0' Subscribe to this feed

VirtualPathProvider: Store .ASPX and .HTM files for your application i (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.1k) 7 months, 1 day ago

With the VirtualPathProvider you can server pages from your website without the files actually existing on the disk. And this doesn't use url rewriting. The VirtualPathProvider actually allows you create your own virtual file system within your application. You can store the pages of you site within an xml file, a database or any other method you would like. In my opinion this is one of the coolest new features in ASP.NET 2.0. read more...

add a comment | category: | Views: 25

tags: another

How to Fade a Form using Windows Forms 2.0 (www.dotnetcurry.com)

submitted by vivekamarvivekamar(4800) 1 year, 6 months ago

There have been plenty of articles written on fading out a form. However I found them to contain a lot of code to do this simple thing. In this article, I will demonstrate how to fade out a form with just 5 lines of code. read more...

add a comment | category: | Views: 30

tags: another

Working with Images in C# (en.csharp-online.net)

submitted by worldworld(520) 1 year, 6 months ago

This article—Working with Images—is from GDI+ Custom Controls with Visual C# 2005. Learn to process images in C# read more...

add a comment | category: | Views: 46

tags: another

Writing Custom Editors for WebParts (www.developer.com)

submitted by crpietschmanncrpietschmann(11.1k) 1 year, 7 months ago

This article describes how to write a custom editor for a WebPart. Because a custom editor written for an ASP.NET 2.0 WebPart is directly usable in SharePoint 2007, this article applies to both technologies equally well. read more...

add a comment | category: | Views: 45

tags: another

DBNull & Nullable<T>: 'as' as a hero (devlicio.us)

submitted by thornthorn(20) 1 year, 10 months ago

Nullable types would be a lot more useful if they mapped to DbNull... A great one line solution exists! read more...

add a comment | category: | Views: 13

tags: another

Windows Vista Controls for .NET version 1.3 released (www.codeplex.com)

published 1 year, 11 months ago, submitted by Lck84Lck84(125) 1 year, 11 months ago

The Windows Vista Controls for .NET 2.0 library is an open-source project which was started in January 2007 and has been released on CodePlex, undergoing several updates and changes. Its latest 1.3 release includes several native Vista common controls which can be included in any WinForms application and includes other features like DWM thumbnails, DWM glass and Task Dialogs. read more...

add a comment | category: | Views: 38

tags: another

DataGridView Extension (devintelligence.com)

submitted by adventureradventurer(2131) 1 year, 11 months ago

DataGridView Extension is a free component that extends the standard DataGridView control, provided with .NET 2.0 Framework. read more...

add a comment | category: | Views: 59

tags: another

Working with data in asp net 2-0. (weblogs.asp.net)

submitted by lfriendlfriend(105) 1 year, 11 months ago

A Scott Gu's post (apr 07) read more...

add a comment | category: | Views: 3

tags: another

CAKE3 - Free archiving library (devintelligence.com)

submitted by adventureradventurer(2131) 1 year, 11 months ago

Cake3 library supports compressing and extracting files to/from different archive formats .The library can be easily integrated to your projects . read more...

add a comment | category: | Views: 5

tags: another

A comparison between Folks and ASP.NET Ajax (weblogs.asp.net)

published 1 year, 11 months ago, submitted by edurdiasedurdias(190) 1 year, 11 months ago

A small benchmark of Folks performance against ASP.NET Ajax. read more...

4 comments | category: | Views: 3

tags: another

Calculate Distance Between Geocodes in C# and JavaScript (pietschsoft.com)

published 2 years ago, submitted by crpietschmanncrpietschmann(11.1k) 2 years ago

There are times when I need code to calculate the distance between two geocodes (Lat/Long points). I don't need it very often and until now I didn't have a code snippet that I could jus copy and paste. I was searching and found Rob Conery's LINQ and Geocoding post. It's an interesting post and he includes a sample of how to use Lambda expressions in C# 3.0 to calculate the distance between two geocodes in Miles. I decided to copy his code snippet and make sure it works in .NET 2.0 and also convert it to JavaScript. read more...

1 comment | category: | Views: 130

tags: another

The Stopwatch Class (www.alteridem.net)

published 2 years ago, submitted by rprouserprouse(1165) 2 years ago

Stop using DateTime to time long sections of code. The 2.0 framework introduced the System.Diagnostics.Stopwatch class to do the dirty work for you. read more...

1 comment | category: | Views: 14

tags: another

Web.Maps.VE - Virtual Earth Without JavaScript, plus .NET 3.5 Support (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.1k) 2 years, 1 month ago

Yesterday, I released the fourth update release (v1.00.04) of my Web.Maps.VE component. The main feature addition in this update is the addition of .NET 3.5 support. Web.Maps.VE is an ASP.NET AJAX Virtual Earth Mapping Server Control. It abstracts out the need to write JavaScript when implementing Virtual Earth mapping within an ASP.NET application. Web.Maps.VE allows you to focus more of your time on implementing features that users want, rather than having to deal with the hassles of JavaScript. read more...

add a comment | category: | Views: 8

tags: another

Get latest buildable code (www.nosoupforme.com)

submitted by daninordaninor(435) 2 years, 1 month ago

Utility to integrate and automate Team Foundation Server operations ensuring your build doesn't brake read more...

add a comment | category: | Views: 4

tags: another

12/2007: Code that I've Blogged over the last 6 months (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.1k) 2 years, 1 month ago

This is a collection of my blogs posts that include code from over the last 6 months. There's stuff ranging from a Windows Service monitor that runs in the system tray, to UrlRewriting/UrlMapping, to ASP.NET AJAX, to a JavaScript based Slideshow component, to adding iPhone style flick support to scrolling a web page using JavaScript. read more...

add a comment | category: | Views: 15

tags: another

C#: Care about Event Memory Leaks with Delegate.GetInvocationList() (weblogs.sqlteam.com)

published 2 years, 3 months ago, submitted by spirit1spirit1(3140) 2 years, 3 months ago

Subscribed events are one of the most common reasons of memory leaks in .Net. This means that if you have an object that has an event and there are other object that are subscribed to that event, the original object won't be properly disposed until all events are unsubscribed since an event is a strong reference. read more...

2 comments | category: | Views: 226

tags: another