Page 1 of 1

Determine the Browser [SOLVED]

Posted: Tue Jun 07, 2016 11:47 am
by koly86
Hi everyone.
How determine the mobile browser from Desktop?

Re: Browser

Posted: Wed Jun 08, 2016 6:24 am
by JS-Support @Userware
Hi,

You can get browser information by using the following C# code:

Code: Select all

string browserInformation = Interop.ExecuteJavaScript("navigator.userAgent").ToString();


Regards,
JS-Support

Re: Browser

Posted: Thu Jun 09, 2016 9:57 am
by koly86
thank you so much