Anyone going to Code Camp: http://pacwest.ms/codecamp/sea/1/ I am staying at the Marriott Courtyard Saturday night which is about 3 miles from the DeVry...
Here is a list of sessions for the upcoming Code Camp October 22nd & 23rd. http://pacwest.ms/codecamp/sea/1/sessions.html Can you tell that I am pretty excited...
Administrative Computing Services at Western Washington University is in immediate need of a .Net programmer. This person needs to have experience with...
Bob, You might be interested in posting this too: The Whatcom Tech List is a local email distribution list for computer and networking people to communicate...
http://msdn.microsoft.com/msdnmag/issues/05/11/default.aspx Lots of stuff on 2.0 and it is all there on the web before I even received my hard copy in the...
Hey Andy, Dina and I are going to Code Camp. What was the name of that book you loaned me? I want to buy a copy, I have a new project and I need something ...
Pretty sure this is it: Applied Microsoft .NET Framework Programming by Jeffrey Richter http://www.amazon.com/exec/obidos/tg/detail/-/0735614229/ On the code...
Joe Hummel has a series of 15 webcasts titled "Modern Software Development Using C#: Develop in .NET" They cover everything from n- tier to interfaces to...
I have used the following simple pattern to wrap values stored in ViewState quite a bit: private int Status { get { return ViewState["status"] != null ?...
So instead of using a <asp:text> variable on the form, you are recommending the code below. If I translate correctly, a variable like strSortOrder could be...
Bob, There are two things going on here. First is that using the ViewState object to preserve values between post backs is a very convenient tool. The values...
I am still a C# beginner and I can see the slickness! -- Programming today is a race between software engineers striving to build bigger and better idiot-proof...
This focuses on what Generics are trying to accomplish rather than what Generics are. I had been struggling with Generics but this article helped me to get my...
* ... * I came across this article this morning while browsing today's popular links on http://del.icio.us/popular. It's funny because I was just complaining...
VS2005 is much better! http://www.asp.net/whidbey/whitepapers/VSWhidbeyOverview.aspx Can't wait to download the RTM version... (today?) -Andrew ... friends,...
I am anxiously waiting for this to be posted to MSDN subscriber downloads. It's probably going to be slow-download feeding frenzy. - will -- Programming today...
I am planning to completely nuke my hard drive and start over. I use my laptop for everything from office business to development, and I want to configure...
2) You need to reinstall it yourself, once you have a "base" install of an OS, make a copy of the virtual hard drive. This will allow your to "spawn" without...
It is official. Today is the launch day for Whidbey aka .NET 2.0. To coincide with the 2.0 launch, I thought that I would put up a very small 2.0 based web...
Get them while they're hot! https://www.microsoftelearning.com/visualstudio2005/ - will -- Programming today is a race between software engineers striving to...
Does anyone have any experience with URL rewriting using VB.NET<http://VB.NET>or links to references online? All of the tutorials that I have found are either...
Will, Is this with 2.0? If so, you can do it in your config file. If you are working with 1.x, you will need to write an HttpModule. I have some code in a book...