There is a one-day class on Sharepoint Administration coming to Bellingham in the November timeframe. The cost will be roughly $230 (I think). This class has...
I just got finished talking with our IT Department about developing for and configuring our current Sharepoint system. I will run this by them and get back to...
I have a good friend and previous co-worker who has been happily working on contract at PACCAR, and it sounds like they're looking for someone full-time to do...
I'm currently working on an application that allows the client to do a side-by-side comparison of information from 2 different datasources. This consists of a...
http://www.microsoft.com/sql/2005/productinfo/letter.mspx The highlights: 1. Mirroring of databases has been delayed until sometime in 2006 2. In an effort to...
For any of you out there with Universal or Enterprise Subscriptions, Virtual Server has just been added to the mix. This was a special "limited" time offer...
The application I'm working on is writing to 2 different tables. The first table is the ProjectName, ID (AutoNumber), and the Date/Time added as a timestamp....
Will, One issue that you might be having is that both ExecuteScalar() and ViewState() return objects. Setting ViewState() = ExecuteScalar() should be ok but...
Thanks for the reply Andrew. I checked the value of ExecuteScalar() yesterday and it returned the value that I was looking for. Here is a quick pseudo-code...
Will, Your code looks ok, but have you disabled viewstate on the page? (EnableViewState="false"). If so, this won't work. Also, since ViewState can only store...
I feel like a putz. I figured it out and it is rather embarassing, but I'll share. Sub btnRelease_onClick(...) sql, dataset, conn, etc.. fill dataset bind...
Beta but very impressive. * Explore and modify the document object model (DOM) of a web page. * Locate and select specific elements on a web page through a ...
TinyURL is free, the same link: http://tinyurl.com/czro5 -Wayne ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf...
Has anyone responded on this? I am interested in attending & I think we could get 2 or 3 people from ATUS Web Services (Western). Bob Jones <bob@...>...
I am putting together a few presentations for October, November and December. Time to get this group moving again. 1. I am going to do a short presentation on...
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...