hello
I want to know how to store browser information(datetime,browser type) in sql server database.
i got all details an d i stored that details a invisible label and store it in db.
i think it is not the rights way.
Is there any proper way to do it???
Thanks
Loading
Ashok YadavPosted Nov 27, 2014, 3:16 AM
Browser Capabilities:
"); Response.Write("Type = " + bc.Type + ""); Response.Write("Name = " + bc.Browser + "
"); Response.Write("Version = " + bc.Version + "
"); Response.Write("Major Version = " + bc.MajorVersion + "
"); Response.Write("Minor Version = " + bc.MinorVersion + "
"); Response.Write("Platform = " + bc.Platform + "
"); Response.Write("Is Beta = " + bc.Beta + "
"); Response.Write("Is Crawler = " + bc.Crawler + "
"); Response.Write("Is AOL = " + bc.AOL + "
"); Response.Write("Is Win16 = " + bc.Win16 + "
"); Response.Write("Is Win32 = " + bc.Win32 + "
"); Response.Write("Supports Frames = " + bc.Frames + "
"); Response.Write("Supports Tables = " + bc.Tables + "
"); Response.Write("Supports Cookies = " + bc.Cookies + "
"); Response.Write("Supports VB Script = " + bc.VBScript + "
"); Response.Write("Supports JavaScript = " + bc.JavaScript + "
"); Response.Write("Supports Java Applets = " + bc.JavaApplets + "
"); Response.Write("Supports ActiveX Controls = " + bc.ActiveXControls + "
"); Response.Write("CDF = " + bc.CDF + "
"); ==================== Create Table(column) as needed and store in database.