How To Convert From Request With Parameter to No Parameter in ASP.NET (Server.Transfer)
Sunday 24 January 2010 @ 2:59 pm
  The problem is that I’m trying to keep track of the exact URL a person selects including the request parameter.  That is, I have a URLs that can be played as follows: http://video.peterkellner.net/TestPage.html?src=P1_Intro.wmv http://video.peterkellner.net/TestPage.html?src=P2_BasicRIANoTooling.wmv   I’ve actually got 7 videos that I want people to be able to play.  [...]
Comments (3) - Posted in C#, IIS7  


First Blood Using the New Microsoft Web Platform Installer
Saturday 4 April 2009 @ 9:57 am
  At http://learn.iis.net/page.aspx/523/web-platform-installer-walkthrough/ ) Step 2:  Click Install now  (Can’t find PHP, starting searching the web now)  {Note: 4/14/2009. Turns out I missed an easy step.  See bottom of article for that step} Found this link:  php on the web server choice, but I do see WordPress so I chose to install [...]
Comments (0) - Posted in Database, IIS7, MySql, PHP  


Not Using Session in ASP.NET means Session Affinity/Sticky Sessions Not Necessary in Web Farms!
Friday 3 April 2009 @ 9:51 pm
  So, I’ve always incorrectly thought that somehow, the cookie stored in Stefan Schackow, a Microsoft employee who is an expert on all things secure around

First Blood, Windows 7. Shock and Awe!
Sunday 15 February 2009 @ 2:44 pm
(Microsoft recently sent me two DVD’s (a 32bit and a 64bit).  Since I have a 64bit machine with 4gig of RAM, I figure I should test the 64bit.  So, here we go. The Installation Process If you have ever installed a Microsoft OS before, the steps are basically the same.  Put the disk [...]

How To Tell If Ajax is working on your site with ASP.NET’s ajax UpdatePanel and other Controls
Sunday 12 October 2008 @ 8:36 pm
So, I suppose you should just be able to see the fact that Fiddler, or you can do the cheap trip about I’m about to explain. Simply, add a sleep statement to your page_load event (Thread.Sleep(3000);) and run your page.  If you are using

How to User HttpHandler such as .ashx file with IIS7 Integrated Mode, Webfarm Environment
Saturday 6 September 2008 @ 10:20 am
Recently, we’ve moved our hosting for the IIS7’s web.config file (see below)   <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" … [...]