Things added in March, 2008
About jhollingworth
a blog about my life (twitter.com/jhollingworth)
Feed Subscriptions
RSS Things
RSS Comments
Posted on March 28th by jhollingworth.
One thing I love about SubSonic, in fact the reason i switched, was how awsome the querying is. I don't know why but something like new UserCollection().Where("UserID", id).Where("Password", password) just ...
Posted on March 2nd by jhollingworth.
For future reference, to get the clients browser:
$Context.UnderlyingContext.Request.Browser.Browser
This is infact accessing the HttpRequest.Browser property so you can then get all the usual info like browser version:
$Context.UnderlyingContext.Request.Browser.MajorVersion
Hope this ...