The company I work for uses tracking software for entering help desk (IT-related) issues. The issues are timestamped and assigned a Priority level (A-D). Each...
You might receive a 403.9 error while testing or running a web site hosted under IIS 5.1 on Windows XP Pro. Typically this occurs when you have lots of small...
This looks like a pretty good deal. After attening 3 web casts, you get a free copy of Visual Studio Standard Edition. http://www.learn2asp.net/campaign.aspx ...
I would really like to attend this talk. Would anyone else like to travel up there? http://www.netbc.ca/DNCal/EventDetail.aspx?date=2006/03/06 Date & Time:...
Andy (et. Al.), I'd like to go -- and my calendar is actually empty that evening! Sounds like drinking from a firehose, though. Hope some of it sticks. Rob...
If at all possible I will go. This is right up my alley! - Will -- Programming today is a race between software engineers striving to build bigger and better...
I have been aware of the term "SQL Injection Attack" for many years but it hasn't been until recently that I really explored this vulnerability. Very scary...
Yeah, you should never use concatentation when it comes to building SQL strings. I used to do that all the time but soon realized that parameterized queries...
I don't mean maxLength to be SQL-Injection proof. What I mean was using the maxLength attribute coupled with a CleanData Function + parameterized queries will...
A handful of us attended the Seattle Code Camp last October and I think that everyone got something out of it. Code Camp is now coming to Vancouver. This is a...
I just registered and plan on attending unless something major comes up. Andrew which track are you going to do? - Will -- Programming today is a race between...
I would likely bounce back and forth between the two tracks. As always, there are time slots where I am not interested in either track and time slots where I...
... http://www.microsoft.com/learning/mcp/offers/2ndchance/ -- Programming today is a race between software engineers striving to build bigger and better...
Lots of new goodies from Scott Guthery. Anyone working with ASP.NET 2.0 should take a look: http://weblogs.asp.net/scottgu/archive/2006/03/30/441465.aspx...
You have to go through a couple of hoops and agree to be marketed to by Microsoft, but you can download Virtual Server 2005 Enterprise Edition for free: ...
Web Application Projects allows Visual Studio to return to its ways of old. In VS2002 and VS2003, web sites had an application project much the same way that...
I am working with an event hook into a class that returns several different types of values within its "e.ReturnValue" value and I only care about one specific...
So if I am trying to see if a user has entered a valid date in a text field, I would write: DateTime myDate = txtDateField.Text as DateTime; if myDate is null...
Not exactly. In your case, you are converting from one type to another (string to a DateTime). You will have to explicity convert the txtDateField.Text to...
Huh? You lost me on this. What my take-away is that the cost of understanding all the subtle nuances of this far exceeds the value of knowing it. So what if a ...
Sounds like the difference between an artist and tradesman. -Wayne ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
Wayne, Well said. I am too old and too lazy to pretend to be an artist any more. After decades of trying to get my strokes by having people say "Wow, what ...
Looks like I opened a can of worms here. That was not my intention. I enjoy learning all that I can about ASP.NET & C#. I get a kick out of understanding what...
Consolas is one of a number of new fonts that ship with Vista. (And was the only reason that I installed one of the early builds of Vista.) Microsoft has now...
The new Web Application Project model has been released. While new for VS 2005, WAP is in many ways a return to the old ways found in VS 2003. You can now set...
Andy, The WAP looks like both a powerful and dangerous tool. Have you used it yet on existing 2005 projects? What happened? How does this impact the ...