Recent Posts
Calendar
May 2013
S M T W T F S
« Apr    
 1234
567891011
12131415161718
19202122232425
262728293031  

Posts Tagged ‘video’

Multi-Targeting

One of the big new features that have been advertised with Visual Studio 2008 is this thing called Multi-Targeting.  This lets you write code for .NET 2.0 (or 3.0) even though 2008 is written to work with .NET 3.5.  So, the theory is, you can still work on existing projects targeted for .NET 2.0.  Does this work?  Watch the video to find out.

del.icio.us Tags: ,

  

Technorati Tags: ,

Republished by Blog Post Promoter

ASP.NET/VB.NET – Video Training

ASP_VB.NET_Course

  • Master the leading internet Web application programming languages
  • Includes 5 levels of ASP.NET focusing on everything from server side programming concepts to globalization and data-binding
  • Learn ASP.NET and VB.NET debugging procedures
  • Includes 7 levels of VB.NET Visual Basic.NET programming levels
  • Learn about everything from VB.NET error handling to polymorphism and upgrading applications to VB.NET

Read the rest of this entry »

Using Reflection to Load a Class in ASP.NET

Last week, we took a look at creating a DAL that would allow us to swap out database providers without having to rewrite a lot of our code.  The only problem with the code I showed you is that you still have to change code whenever you swap databases.  This is not very flexible.

Read the rest of this entry »

Swapping the DAL Abstractly

Last Thursday, we looked at how to replace the TableAdapter with our own TableAdapter as a way or eliminating our dependence on Microsoft SQL.  The problem with this implementation is that every time you want to switch databases, you’ll need to switch what TableAdapter the code is using.

Read the rest of this entry »

DataSets, ObjectDataSource and 3-Tier ASP.NET

As I’ve mentioned in other post, while I think LINQ has it’s uses, I still favor the use of the ObjectDataSource control in conjunction with DataSets and a 3-tiered architecture.  Since any future demos I do will probably involve this architecture, I thought it would be useful to do a short demo that demonstrates how to create a 3-Tiered architecture in ASP.NET.

Read the rest of this entry »

Bear