Fritz hits one out of the park [Don Box]
It's twue, it's twue...this book does kick extreme ass. So often you buy a .NET book and look at only chapters 19 and 20 and the rest is fodder. This book is NOT like that.
As you look at the Table of Contents, you notice right away this book is not structured like a typical ASP.NET book (as Fritz is not structured like a typical programmer, this is to be expected).
It begins with Architecture (a nice first chapter) and chapter 4 gets right into the HTTP Pipeline. The Table of Contents reads like a directory of What's Misunderstood in ASP.NET - which is exactly how it should. It is now carried under my arm with pride, I recommend you pick up a copy.
Updated Link to this post 3:38:05 PM # comment [] trackback []
Steven Frank (who I had the pleasure of going to college with, as well as buying Apple Newton together) has recorded "Ben & Mena," a blogging anthem if ever there was one...
"It relays the epic saga of a lonely everyblogger who dreams of finding the ultimate link that will catapult his puny blog into the limelight."
Here's some sample lyrics:
Blank page, nothin' to say
Just pictures of my cats today
Thought about the war a bunch
Now let me tell you what I had for lunch
Boys all hate me, my girlfriend dumped me
They're bombing Iraq, my oatmeal's lumpy
Wi-Fi networks in Central Park
Funny Photoshops up on FarkSemantic web, RSS, and e-mail
Single white guy seeks athletic female
I'm busy building the digital commons
Cook me up another bowl of ramenReferers say no-one came today...
I wanna be Ben, I wanna be Mena
The master of my domain
So send me a ping, send me a trackback
I promise I won't complain
Check it out, it's up at ~stevenf.
Updated Link to this post 12:58:07 PM # comment [] trackback []
Has anyone given any thought on how to programmatically modify/add the dir= attribute to the HTML or BODY tags when the Thread's Culture in ASP.NET is a Right To Left language?
This doesn't work reliablity, as ASP.NET may batch up controls into an HtmlLiteralControl...often, not always, the body (or html) tag can't be found. This depends on how ASP.NET decided to parse the control tree for a particular page. Additionally, there doesn't seem to be anything in CultureInfo that would help me decide what languages are right to left...
If I can reliably get ahold of the HTML control and BODY tags and add this attribute, I'm good.
/* Doesn't work reliably */
HtmlGenericControl bodytag = (HtmlGenericControl)FindControl("body");
bodytag.Attributes["dir"] = "rtl";
else
bodytag.Attributes["dir"] = "rtl";
Updated Link to this post 12:24:16 AM # comment [] trackback []
Copyright 2003 Scott Hanselman
Theme Design by Bryan Bell



