Things have been a bit crazy the last couple of days (my wife is pregnant and there have been a few complications), but I wanted to share some links I've come across the last couple of days: Video - Visual Studio 2005 for Database Professionals (MS Channel 9) Implementing Role Based Security with ASP.NET using Windows Authentication and SQL Server (From ScottGu's Blog) Free web site templates - Open Source Web Designs Chris Technorati : .NET, ASP.NET, Database Professionals, Microsoft, Open Source,...
I just finished another article - Launching a desktop application from ASP.NET using Remoting – An Experiment. It's an app I wrote a while back as a “Proof of Concept” project. I hope everyone enjoys it! Chris
Introduction This article covers an application that was written as a “Proof of Concept”, testing the ability to trigger the launch of an application from a web application. The application is also a bit of a practice in Remoting, a subject that I have not explored very much. The application is intended to work within an Intranet environment as it would not work correctly within an Internet environment. In addition to the main subject, it covers creating remoting proxies to different...
Introduction This 3 article series will cover inserting data into SQL Server, without the help of Visual Studio’s drag and drop controls and configuration wizards. A special emphasis will be placed on its application within a tiered environment. Part 1 – Part 2 – Part 3 Part 2 – Creating a Connection Now that we have a stored procedure, we need to be able to connect to our database. I’ll cover a brief overview of a SQL connection string, some basics about the SqlConnection...