A few of us have been using Vitual PC for testing and development. I find myself relying on it more and more. It is a great way to try out new software without...
BellinghamDotNet: We have just started the "The Normalized IIS Log File Project" an open source project with the goal of: designing a normalized database to...
http://www.devscovery.com/ I am seriously thinking about attending this. An amazing group of speakers. $900 and well worth it. Aug30 - Sep1. Microsoft...
I just got my VS2005 Beta 2 in the mail and was wondering if i can install it alongside a VS2003EA installation? Yes, Wayne, i know ... Virtual PC ... Thanks, ...
Jay, I am running VS2003 and VS2005 side by side on the same machine. I have done this on two different machines without any issues. VS2005 uses its own web...
Thanks Andrew. I'll have more time to check it out in about a week. -jay ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com]...
Some good info from Rick Strahl: New Compilation Modes in ASP.NET 2.0 & More ASP.NET 2.0 Compilation Model Issues http://west-wind.com/weblog/posts/2128.aspx ...
I copied and moved a couple of web sites around on my machine. I then used the built in, Visual Studio 2005, Copy Website... function. When I reopened my site...
Andrew, I'll throw in my first experiences with VS2005, limited to about 15 minutes of looking/screwing around: I built a simple little website and noticed...
Jay, One of the biggest issues with VS2002 and VS2003 was the confusion that surrounded the way that Visual Studio connected to a web site. Some connections...
Yes, so much to learn and so little time. I watched a webcast on some of the new features in C# and there is just so much there (actually it put me to ...
Everyone is saying that the beta of VS2005 is slow. Beta 2 is slower than Beta 1. My guess is that when it ships, it will be much faster. This would follow a...
I know some of you haven't been C programmers forever, so here is the tip of the day: If you have an if statement, switch, or while that is really long (with ...
I listened to part of it today and it was informative, but mostly stuff that Wayne talked about at our last meeting. The one thing that I thought might be...
Here is his blog: http://www.mcwtech.com/cs/blogs/brianr/ ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Jay...
Cool tip Wayne. Also works with () and []. VS 2005, even highlights the {}, [] and ()s. Don't know if it works with <> in VB.NET? Are those used for ...
I have been reading up on Master Pages that will be part of Whidbey and can see how they will make it much easier to change the layout of large sites in a...
Matt, Nothing exactly like master pages exists in 1.0 or 1.1 you can however accomplish a similar thing using two user controls. I have done this quite offten....
Andrew, I was already heading in that direction and have my header, footer and menu portions in user controls. My next step is to find a way to somehow call up...
You could put the content of your pages in user controls. You would have a user control for contact,search,privacy & press and other controls for each of your...
Andrew - The Page.LoadControl method is very cool. I've long suspected that there must be a way in .NET to create a "master format" page but have not seen any...
All.... I'm wondering what you all think about a simpler, cruder solution that might work better when the page content needs to be created/handled by someone...
Rob - I do something like what you suggest for my course web sites. Each course web site consists of 15+ pages and most of each site is served through a single...
I haven't played around with this all that much, but have wondered if you could use the following to do something along the lines of what ... Control c =...
Andrew, Thank's for the reply. Sandvig showed the class his code sample today and quickly explained what you had suggested doing. Your suggestion is exactly...