Confessions of an ASP.NET Developer
Independent Web Development blog by Wil Welsh. Featuring ASP.NET, VB.NET, C#.NET and Web Standards code as I create it for projects.
Wednesday, November 29, 2006
Tuesday, November 28, 2006
Rehsarper build 313 is out
Sure is a fancy one too. Solved a lot of speed issues for me.
http://www.jetbrains.net/confluence/display/ReSharper/Nightly+Builds
Ignore this.
Technorati Profile
Wednesday, November 22, 2006
IDE Hot or not
http://idehotornot.ning.com/
I posted a few of my Visual Studio 2005 Color Schemes over there. Its nice to see someone putting up a central collection of them somewhere. Check out my new Neon Blues colors there.
Labels: Color Scheme, Colors, Visual Studio 2005
Thursday, November 16, 2006
IE7 Blows
document.getElementById('myElement').style.display = "none;"; Works in all other browser, except IE7.
document.getElementById('myElement').style.display = "none"; Works in ie7 & other browsers.
All IE7 tells you is that yourelement.style.dispplay is unaccessable property.
I have a problem with IE7. When my system is loaded down, if I hit Ctrl-alt-delete to bring up task manager, IE7 Will spawn any pending popup windows OVER the task manager. There's something really obscene about an interenet browsing application taking forefront over the system management tools. Say you have a page with bad popups on them.... Killing them with
the task manager will no longer work.
Now I have an additional line of css declarations to get everything to line up since it doesn't render like firefox or ie6... *:first-child+html .divNoHistoricalTabs { margin-bottom: -7px; }
Its like the browser wars all over again only the techniques to target a browser have become more obscure.