Web Development
aspmulti.txt
Associated article: ASP.NET & Multiplatform Environments
Tags: Web Development .NET
Published source code accompanying the article by Marcia Gulesian in which she examines how running .NET Web applications in the enterprise means accomodating a myriad of servers and browsers, many with distinct behaviors.
ASP.NET & Multi-Platform Environments
by Marcia Gulesian
Listing One
<!-- AppleWebKit Based Browsers (Safari...) //-->
<case match="AppleWebKit/(?'version'(?'major'd)
(?'minor'd+)(?'letters'w*))">
browser=AppleWebKit
version=${version}
majorversion=${major}
minorversion=0.${minor}
frames=true
tables=...


