What makes ASP.NET Web Sites Different? In this lesson I will show you how to create a basic ASP.NET web site. I will also explain the basic structure of a web site as follows. How ASP.NET separates Code from HTML… Read More ›
Misc
Open Source, Love It or Hate It
As the title aptly states, I have a love-hate relationship with open source software. From a business perspective I have decided that I mostly hate it. When it comes to making money, I need something to work right now. With… Read More ›
Working with Visual Studio
There are a few settings I like to set up immediately whenever I am working with a clean install of Visual Studio to help my development go a little smoother. Here are just a couple of those things. How to… Read More ›
SSIS – How To Save a Package as a Template
When creating SSIS packages, you may need to set up common steps, connections or variables. For instance it is possible that you create the same type of package frequently but with slightly different configurations. Visual Studio allows you to save… Read More ›
Ho to Manage and Remove Recent Projects in Visual Studio
How to change the number of recent projects stored Visual Studio maintains a list of the most recent projects you’ve worked on so you can open them quickly. By default it maintains the 6 most recent projects on the start… Read More ›
Connect to SSIS on a Named Instance of SQL Server
The Problem: Can’t Connect to Named Instance of SSIS in Management Studio I’ve occasionally run into the following error when attempting to connect to SSIS from Management Studio: “Failed to retrieve data for this request. (Microsoft.SqlServer.SmoEnum) The SQL Server specified… Read More ›
How to Create a Publisher Policy Assembly
This post is only for a reference in how to create the config file and the command line arguments needed for the Assembly Linker (AL) tool to create the publisher policy file. For a full reference on how to create… Read More ›
Add Your Assembly to Visual Studio Add Reference Dialog
When you add a reference to a project in Visual Studio there are several tabs to allow you to “quickly” pick an assembly to reference. The .net tab is the first and, at first glance, appears to show all assemblies… Read More ›
Mouse won’t work in MS Word 2007 and Word Crashes on Close
I’ve had this issue a couple of times with MS Word 2007. Word won’t accept any mouse inputs, have to do every thing with the keyboard. Also, when you close Word, it crashes and tries to re-start unless you cancel… Read More ›
Convert a ByteArray into a Stream
Often when you need to call a function to save a file to disk or to a database you are required to pass a .NET stream to the function but all you have is a byte array. In pre-.NET days… Read More ›