The IE Developer Toolbar provides several features for deeply exploring and understanding Web pages. – Explore and modify the document object model (DOM) of a web page. – Locate and select specific elements on a web page through a variety of techniques. – Selectively disable Internet Explorer settings. – View HTML object class names, ID’s, and details such as link paths, tab index values, and access keys. – Outline tables, table cells, images, or selected tags.
Websites and blogs of people that attended a Homebrew Website Club Düsseldorf.
Poland Rocks
It was the second time this year I went to Warsaw (Poland). The Microsoft Technology Summit happend for the first time and was a big success. An amazing event: Two days, about two-thousand attendees, six parallel tracks, four a day. I had about three-hundred listeners in each of my sessions (“Layout and Personalization with ASP.NET 2.0” and “Data-Driven Application with ASP.NET 2.0”). The feedback in the breaks was great.
.NET SummerCamp 2005 Leipzig
Torsten Weber invited me to do one day of sessions at the .NET Summercamp: I introduced .NET 2.0 and C# 2.0 and talked about Visual Studio 2005 Team System. It was the first time in Leipzig and i really liked it. Hopefully i’ll be there next year too.
Cool Tool: Cropper
Cropper is a free Screen Capture Utility written in C# http://www.thegridmaster.com/
VfL-Kino: Hitchhiker’s Guide to the Galaxy
Usergroup-Treffen mal anders: Open Air 400 m² Leinwand Kein Vortragender Am donnerstag haben wir zusammen mit der NET UG-Düsseldorf im Frankenheim Kino den einzigen Geek-Kompatiblen film diese Saison gesehen: Hitchhiker’s Guide to the Galaxy War super ;-)
OIS
For years I used ACDSee 3.0. It always remembered me of the days of Windows 95/NT 4.0. That is the past now. Deep deep in your file system there lies a neat tool that does the job very well. The only problem I did not recognize that its even there for years. After i found it, and yes also liked it. I decided to use it and added the missing part to integrate the Office Picture Manager into daily work.
Don't mess with sharepoint...
Carefully said I do not like that sharepoint “hijacks” the Internet Information Server. When you create a virtual directory it is just not accessable because SharePoint took over IIS. Funny fact: This is the second post how to fix issues with IIS and “extension” that cause issues :-) So I decided to hack a small utility serving my needs… Enable to exclude applications from sharepoint services through the directory context menu.
ASP.NET Version Issues
I develop with 1.1 and 2.0 - When VS 2003 creates a web solution it is configured to use the 2.0 runtime. Placeing the following code to the Global.asax’s of your 1.1 projects and setting execute permissions on the aspnet_regiis.exe helps much. protected void Application_Start(Object sender, EventArgs e){ if(System.Environment.Version.Major == 2) { System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = "%WINDIR%\\Microsoft.NET\\Framework\\v1.1.4322\\aspnet_regiis.exe"; p.StartInfo.Arguments = "-s W3SVC/1/ROOT" + Request.ApplicationPath; p.StartInfo.UseShellExecute = false; p.
Simply resize an uploaded image
I got an E-Mail from a student this morning asking how to thumbnail an uploaded image. Here is a “quick” solution (there are a few things you can do to increase quality, set JPEG compression factor or keep gif transparency). If you like to dig deeper have a look at one of the articles I wrote for the DotNetPro magazine’s #Talk column. <%@ Page Language="C#" %> <script runat="server" Language="C#"> public void UploadFile(object sender, EventArgs e) { System.
Windows Communication Foundation - I Like Indigo More
Like Christian Weyer and Damir Tomicic I like the word Indigo more than WCF and just read that Kenny will continue to refer to it as Indigo for a little while.
Another german main feed is growing
…And I was just Added :-) Shinja Strasser is the head of the NET UG Usergroups. He is publishing a main feed for the members under http://blogs.netug.de/. Now he opend the main feed for a few guys of the german community.
.NET Summit NRW review
First of all thank you to everybody who helped (Microsoft, INETA, S&S, E-Team…), spoke (Christian Weyer, Dirk Primbs, Achim Oellers, Dr. Holger Schwichtenberg) nad attended the event. A few things learned: Min. Session time is 60 min. Print out the list of attendees ordereb by lastname ascending Call restaurant to make sure the speakers diner will be served :-P The feedback until now was very good and Stephan and I plan to do the “.
Evil Empire
Mike Vernal figured out from where Microsoft’s whole “evil empire” moniker comes from. Must read :-)
MSN VirtualEarth
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.
RE: httpOnly cookies in ASP.NET 1.1
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; } } } }
Firefox more sexy than InternetExplorer :-P
CAPCHA with Flickr
I just stumbled over roy’s post and i think it would make sense to use smth like that as a capcha solution.
Two weeks left for your registration - .NET Summit NRW
Eine Community-Konferenz für Entwickler veranstalten die beiden INETA User Groups “VfL-Niederrhein - Verein für Longhorn” und die “Net UG Düsseldorf” am 28. Juli in Neuss. Der vierstündige Event mit dem Titel “.NET Summit NRW” bietet ein halbes Dutzend Vorträge und ist kostenlos. Ein Event von der Community für die Community. http://www.event-team.com/events/netsummitnrw/Registrierung.aspx Uhrzeit Track 1 Track 2 17:00 - 17:45 Assembly 17:45 - 18:00 Keynote 18:00 - 18:45 Team System Daniel Fisher(lennybacon) [newtelligence] Mit Visual Studio Team System wird bisher die umfangreichste Zusammenstellung der Entwicklerwerkzeuge zur Zusammenarbeit in Projektteams bereitgestellt.
Free Microsoft E-Learning SqlServer 2005
The following e-learning courses are available for SQL Server 2005: 2939: Programming Microsoft SQL Server 2005 2940: Building Services and Notifications Using Microsoft SQL Server 2005 2941: Creating the Data Access Tier Using Microsoft SQL Server 2005
Re: Windows Impersonation in ASP.NET
Pierre posted an entry bout impersonation in ASP.NET szenarios. There are several scenario where you have to use the impersonation in ASP.NET. Consider, for example, you have to save and load files from a network share (file server). In that case, if the web site accept anonymous authentications, you have to impersonate a windows user who has enought privileges to access to that resource. You have three choices (I guess):