Can someone point me to some code that shows how to detect mobileDevice true/false using deviceAtlas?
Thanks
I'm able to pull the vendor and displayWidth, but can't seem to get the mobileDevice
Did you see our ASP.NET tutorial?
mobileDevice should not be any different from any other property. What user-agent are you using for testing? Do you get an exception?
Hi
I am using DA personal webservice and i want information about vendor & model of mobile device, how can i pull that info from this webservice.
Any help will be appreciated.
Thanks in advance.
I'm just getting started with using DeviceAtlas, but so far this seems to be working:
Boolean blnIsMobileDevice = false; blnIsMobileDevice = Api.GetPropertyAsBoolean(Tree, UA, "mobileDevice");
if (blnIsMobileDevice == true) { Response.Write("MobileDevice = TRUE"); }
Sign in or register to reply.
Why register?
Developer's guide
Posted by Pilot 3 years ago
I'm able to pull the vendor and displayWidth, but can't seem to get the mobileDevice
Posted by atrasatti 3 years ago
Mobile Genius
Did you see our ASP.NET tutorial?
mobileDevice should not be any different from any other property. What user-agent are you using for testing? Do you get an exception?
Posted by Milind 2 years ago
Hi
I am using DA personal webservice and i want information about vendor & model of mobile device, how can i pull that info from this webservice.
Any help will be appreciated.
Thanks in advance.
Posted by stevenland 2 years ago
I'm just getting started with using DeviceAtlas, but so far this seems to be working:
Boolean blnIsMobileDevice = false;
blnIsMobileDevice = Api.GetPropertyAsBoolean(Tree, UA, "mobileDevice");
if (blnIsMobileDevice == true)
{
Response.Write("MobileDevice = TRUE");
}