# Wednesday, July 27, 2005

Today 10:36 the last left attendee registration for the event I'm organizing with Stephan Oetzel came in.

:-)

More info: .NET Summit NRW.

Event | Misc
Wednesday, July 27, 2005 10:44:51 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Tuesday, July 26, 2005

Mike Vernal figured out from where Microsoft's whole "evil empire" moniker comes.´

Must read :-)

Tuesday, July 26, 2005 10:59:23 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [16]  | 
# Monday, July 25, 2005

If you ever wanted to know where newtelligence headquarter is (Korschenbroich)...

http://virtualearth.msn.com/default.aspx?cp=51.188584|6.605851&style=r&lvl=9&v=1

You can also see where our next SOA Workshop will happen (Düsseldorf) on September 5 - 7, 2005.

Monday, July 25, 2005 10:08:46 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [25]  | 
# Friday, July 22, 2005

Scott posted a solution to support httpOnly cookies in ASP.NET 1.1 but pointed out some problems when you run the code on 2.0(http://www.hanselman.com/blog/HttpOnlyCookiesOnASPNET11.aspx)

Here is a solution:

		
protected void Application_EndRequest(Object sender, EventArgs e)
{    
	if(System.Environment.Version.Major<2)
	{
		foreach(string cookie in Response.Cookies)    
		{        
			const string HTTPONLY = ";HttpOnly";        
			string path = Response.Cookies[cookie].Path;        
			if (path.EndsWith(HTTPONLY) == false)        
			{            
				//force HttpOnly to be added to the cookie            
				Response.Cookies[cookie].Path += HTTPONLY;        
			}    
		}
	}
}
ASP.NET | C# | Projects
Friday, July 22, 2005 2:43:24 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  | 
# Wednesday, July 20, 2005
Wednesday, July 20, 2005 5:44:40 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [16]  | 
# Friday, July 15, 2005
I just stumbled over roy's post and i think it would make sense to use smth like that as a capcha solution.
ASP.NET | C# | Misc | Projects
Friday, July 15, 2005 2:29:51 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [29]  | 
# Wednesday, June 22, 2005