> Load event but cannot work out how.
>
> Basicall I want to get the following type (see the script at the
> bottom of the post ) of information and store the information in a
> session variable then save to a database table if required. Is this
> possible, and if so how.
Some of the information is available through
HttpContext.Current.Request.Browser, but most isn't...
Easiest way I can think of doing this is to have an initial page (e.g.
<root>/default.aspx) with a piece of JavaScript similar to what you already
have, but which builds up a string of name/value pairs e.g.
<script type="text/javascript">
var x = navigator;
var navProperties;
navProperties += "appCodeName" + "¬" + x.appCodeName + "|";
navProperties += "appMinorVersion" + "¬" + x.appMinorVersion + "|";
etc...
This is then stored in a hidden field and posted to your welcome page. In
the code behind your welcome page, you would parse and split the string.

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net