Concurrency with MPI in .NET
In my previous post, I looked at some of the options we have for concurrency programming in .NET applications. One of the interesting ones, yet... more »
0 commentsSave Tags: .net, frameworks
Permutations, Combinations and Variations using C# Generics.
Discusses the six major types of combinatorial collections with examples and formulas for counting. Expands with a C# generics-based set of classes... more »
0 commentsSave Tags: .net, other languages
Quickly Copy Data Rows from DataReader to a DataTable
In many situations, it's wiser to use DataReader instead of a DataSet. However, DataReader is limited due to its inability to transform data rows into... more »
0 commentsSave Tags: .net, frameworks
Dynamic Data Website: Setting selection in a list from the URL
Bradley’s earlier post, ASP.NET Dynamic Data Preview Released on MSDN Code Gallery, outlined the functionality the ASP.NET Dynamic Data is offering... more »
0 commentsSave Tags: .net, frameworks, web design
Working with the GridView and the System.Data.Linq.Binary Type
I'm working with a database table that has a RowVersion field defined as a TimeStamp data type. The TimeStamp field is there to add concurrency into... more »
0 commentsSave Tags: .net, web design
ASP.NET Tips: What to gather to troubleshoot - part 4 - Deadlocks
There are two ways to gather data in a Deadlock situation. If you are using Windows 2003 or later (IIS 6.0 or later), then follow the steps in the KB... more »
0 commentsSave Tags: .net, web design
WPF UI Update from Background Threads
I'm trying to do my apps in any type of XAML these days since I finally think I "got it". I wish I could claim that I will break free from the... more »
0 commentsSave Tags: .net, frameworks
Creating Controls in Code
In my new video I demonstrate how you can create controls dynamically at run time. The technique is very straight forward, everything you can create... more »
0 commentsSave Tags: .net, gui, microsoft
Plastic editor for Asp.Net Mvc ready to beta
Anyone out there with Visual Studio 2008 installed is welcome to try out an open source utility I’ve put together. If you have feedback or bug reports... more »
0 commentsSave Tags: .net, frameworks, open source, tools
Showcase of "Live" ASP.NET MVC Sites
s It looks like people are starting to deploy sites based on the ASP.NET MVC Framework already. I've been trying to collect some examples and... more »
0 commentsSave Tags: .net, frameworks, web design
We are pleased to bring you new features in .NET 3.5 SP1
In case you haven't noticed yet, the bits for .NET 3.5 SP1 Beta 1 and Visual Studio 2008 SP1 Beta 1 are now available...take a minute and go grab... more »
0 commentsSave Tags: .net, frameworks, news
DataContracts without attributes (POCO support) in .NET 3.5 SP1
One of the new WCF features in .NET 3.5 SP1 is that DataContractSerializer now supports serializing types that aren’t annotated with any serialization... more »
0 commentsSave Tags: .net, frameworks
The Why and How of .NET Profiling
Profiling gathers information about an executing application, allowing you to determine those improvements that are required in your application.... more »
0 commentsSave Tags: .net, frameworks
Future of Windows Forms and ASP.NET
This blog sheds some lights on what future holds for Windows Forms and ASP.NET when WPF is already here.
0 commentsSave Tags: .net, frameworks, opinion
Create AJAX Server Controls using the ScriptControl base class
I've been doing a lot with ASP.NET AJAX for almost 2 years now, including my Web.Maps.VE product. So, I've decided to spread some of my knowledge in... more »
0 commentsSave Tags: .net, ajax, web design
Profiling your .Net Applications Part - 1
Profiling is the act of investigating the applications performance by collecting data about the application while the application is running.... more »
0 commentsSave Tags: .net, frameworks
ASP.NET MVC - Extracting Web Resources
One nice feature that ASP.NET added in the 2.0 feature set was the ability to embed resources directly within an assembly and then later extract them... more »
0 commentsSave Tags: .net, frameworks
Choosing the Right Garbage Collector Settings for Your .NET Application
Tuning the garbage collector to the specific context of the particular application can significantly improve the performance of both non-threaded and... more »
0 commentsSave Tags: .net, how-to, microsoft
Virus Scanning from Code
"A middle-manager who learned about viruses from his son’s copy of Wired magazine realizes you’re saving user-uploaded files to your web server, and... more »
0 commentsSave Tags: .net, announcement, opinion
Routing with Monorail's New Routing Engine
A helpful top level introduction to Monorail's (sparsely documented) new routing engine. Not so much of an overview, but will certainly help you get... more »
0 commentsSave Tags: .net, frameworks
Modifying WPF Animations using C#: Page 1
There are many things you can do using just XAML. That is nice because you can use a designer tool such as Expression Blend to create those "many... more »
0 commentsSave Tags: .net, frameworks, gui
ADO.Net Scenarios in ASP.Net Data Access
Performance is at high priority before complex functionality of ADO.Net objects. Isn't It?
0 commentsSave Tags: .net, announcement, database, research
How to Convert List(T1) to List(T2)
Did you ever need to convert List(T1) to List(T2)? One example might be when implementing an interface. you might need to expose a collection of other... more »
0 commentsSave Tags: .net
ASP.NET Dynamic Data Websites Preview May 12 Refresh for Visual Studio 2008 SP1 on MSDN Code Gallery
Turns out that perhaps the ASP.NET Dynamic Data Wizard will only be made available via its home on the MSDN Code Gallery, because there is a new... more »
0 commentsSave Tags: .net, opinion
ZipFS: Using ZIP files as virtual directories or read-only resource containers in ASP.NET
In your ASP.NET application, you may have a set of static files and directories with many image, script, resource files in them. Especially extensive... more »
0 commentsSave Tags: .net, web design
via