(Edward Steward) I am currently developing an in-house n-tier application, and has managed to reduce vast amounts of code through Reflection. The one part that is still left to manual, tedious code entry is in the client side business objects. On the smaller objects, this isn’t a real issue, but som
Tag: Development
Multithreading The Easy Way: The BackgroundWorker
(Ged Mead) This article came about because I had seen several posts on vbCity recently where I thought the best approach might be to use a BackgroundWorker. As you probably know, this is a helper component that wraps away some of the down-and-dirty stuff you need if you want to use multithreading.
Calling A .NET Managed Method from Native Code
This is a sample native console application which will query the registry to verify if a specific version of the .NET Framework is installed. It will then use the CorBindToRuntimeEx API to load a specific version of the Common Language Runtime (CLR). Finally, it uses the Interfaces and methods expos
String Operations And Performance In .Net
(George P. Alexander Jr.) I was thinking about yesterday’s post that talked about the String.Replace() method. Considering that I had an example that contained XML stored in a string object, one small thought that crossed my mind later today while reading a few comments that followed were the perfor
Implementing the .netTiers Template Library as a .NET Website’s Data Layer – Part I
(Dina Fleet Berry) Data layers allow the abstraction of the SQL calls to a separate set of objects. The .netTiers template library (using CodeSmith) will build a data layer for your .NET web application, including the data administration website, the web service, base objects, etc. This article will
NHibernate and MySql – a simple example how to use it
(Johan Lundqvist) As I usually like to try things out right away I did the same when starting to learn about NHibernate, so I fired up my Visual Studio 2005 and created a new web application to be able to explore this new and awesome technique.
Building Interactive User Interfaces with Microsoft ASP.NET AJAX: Performing Client Actions in Response to Partial Page Postbacks
(Scott Mitchell) The previous three articles in this series focused on building AJAX-enabled web applications using server-side techniques and controls. For instance, Using the UpdatePanel examined how to define regions on the page that participate and are updated by partial page postbacks; Providin
ObjectdataSource, SQL-Server and ASP.NET Ajax-Extensions
(Codegod) This article is about using the ObjectDataSource in combination of ASP.NET, Ajax-Extensions and SQL-Server-database. The ObjectDataSource is shipped with .NET-framework 2.0.
Utilizing your .NET projects Automated Acceptance Tests on Crystal Reports – Part 2
(Eric Landes) As we mentioned in Part 1 of this series, the impetus for this series came about because I want to incorporate agile methods into the reporting modules of projects. After reviewing the different practices that can be found in agile projects, the focus of this series is on how to creat
Simple (non-JS) GridView Delete Confirmation
(Daniel Morris) A common requirement in non-trivial data editing forms is to request confirmation of pending deletions. However, the default behaviour of the .NET GridView control on deletion is to commit the deletion without soliciting any further feedback from the user. This behaviour does tend to
