Monday, March 31, 2003
The Daring Fireball Interview. A great developer interview with Brent Simmons by John Gruber for Daring Fireball. Brent is an excellent Macintosh programmer, so no .NET information here, but a lot of good information on the life of an independent developer.[ranchero.com]
10:08:09 PM  #  
 Saturday, March 01, 2003

On Thursday, I had my first class in my 5-month quest for the MCSD certification. I hope this weblog will document the process both for me and for others who are considering jumping in with both feet.


10:56:53 PM  #  
 Tuesday, November 12, 2002

I came across this Microsoft document that explains the trouble I've been having with setting the app.config file by editing the project file.

The file specified by the ConfigurationOverrideFile property will be renamed to web.config when the project is deployed. This property is meaningful only for Web projects.


5:35:50 PM  #  
 Friday, September 27, 2002
Web Services: Objects or XML Endpoints?. Matthew McDonald, coauthor of Programming .NET Web Services offers valuable advice for every .NET Web service programmer. [O'Reilly Network Articles]
8:43:13 AM  #  
 Tuesday, September 17, 2002

I have always assumed that the automatic image resizing that occured within Internet Explorer was specific to XP. Well, of course, it has nothing to do with XP and everything to do with IE 6. I finally became frustrated enough to investigate and at last found the source of this annoying setting.

Try Tools -> Internet Options -> Advanced -> Multimedia -> Enable automatic image resizing and turn it off. I promise you'll be happy you did. Now when you click on a screenshot it will be actually be readable!


1:07:56 PM  #  
Put simply, never move or copy more than one SQL 2000 database at a time. Invariably, you will find the users for each copy of the database removed or corrupted is some way. Nevertheless, if you do run into trouble, this Microsoft How-To may be of some help.
11:19:10 AM  #  
 Friday, September 13, 2002

Angry Coder has a good column on Visual Studio .NET problems, including something I will definitely try the next time my environment is muddled beyond repair.

"I usually need to close down VS.NET and re-open it at least once per day because of some weird thing it is doing. Sometimes the problem doesn't go away and I eventually learned that deleting the VSWebCache fixes the problem. I even went so far as to create a batch file to do this automatically and I added it to the External Tools menu in the IDE." [Ken McNamee]


9:43:11 AM  #  
 Friday, August 09, 2002

Expiring Pages in ASP.NET

These are the methods to force a server request when a page is accessed within the browser. Unfortunately, none of these have worked consistently, and none have had any effect on the browser's BACK button.

Response.Cache.SetCacheability(HttpCacheability.NoCache);

<%@ OutputCache Location="None" %>

this.Response.Cache.SetExpires(DateTime.Now); 

this.Response.Expires = -1;

<meta HTTP-EQUIV="Expires" CONTENT="0">

if (String(Session["SessionUser"]) == "") SignOut();

And lastly, IIS > Default Web Site > Properties > HTTP Headers > Enable Content Expiration


4:43:00 PM  #