Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Mar 01, 2012 07:09 AM by roopeshreddy
Member
2 Points
2 Posts
Feb 23, 2012 07:11 AM|LINK
i m building a mobile web site, during authenticating need get unique identification from mobile device, how can i do that? cuz i know it is not possible to get information like IMEI or IMSI as u are using browser. so is there any solution for that?
web sit is using asp.net and c#...
ty for the help
Contributor
2268 Points
511 Posts
Feb 23, 2012 07:15 AM|LINK
You can use the IP of your client like
Request.UserHostAddress
Feb 23, 2012 07:19 AM|LINK
You can use this instead
using System.Net;
IPHostEntry ipEntry = System.Net.Dns.GetHostByName(HostName); IPAddress[] addr = ipEntry.AddressList;
Feb 23, 2012 07:31 AM|LINK
ty for u comment
but ip address is always changing.
i m looking for something that only bind to the login device, it is never change, or just change few times in a long period of time
just like IMEI never changed for one device, but for web sit i can not get it....
All-Star
20155 Points
3328 Posts
Mar 01, 2012 07:09 AM|LINK
Hi,
Yeah! You can't get IMEI/ Unique number from Mobile device using Web application!
Alternative is, you can store cookie in the Mobile device with unique id!
NOTE:Cookies may be disabled or removed!
Hope it helps u...
robertgan
Member
2 Points
2 Posts
Get unique identification from mobile device
Feb 23, 2012 07:11 AM|LINK
i m building a mobile web site, during authenticating need get unique identification from mobile device, how can i do that? cuz i know it is not possible to get information like IMEI or IMSI as u are using browser. so is there any solution for that?
web sit is using asp.net and c#...
ty for the help
Muhammad Fak...
Contributor
2268 Points
511 Posts
Re: Get unique identification from mobile device
Feb 23, 2012 07:15 AM|LINK
You can use the IP of your client like
Request.UserHostAddress
If you feel it helps, Mark as answered so that it can help others to find solution.
For Any further questions, please contact me.
Muhammad Fak...
Contributor
2268 Points
511 Posts
Re: Get unique identification from mobile device
Feb 23, 2012 07:19 AM|LINK
You can use this instead
using System.Net;
IPHostEntry ipEntry = System.Net.Dns.GetHostByName(HostName);
IPAddress[] addr = ipEntry.AddressList;
If you feel it helps, Mark as answered so that it can help others to find solution.
For Any further questions, please contact me.
robertgan
Member
2 Points
2 Posts
Re: Get unique identification from mobile device
Feb 23, 2012 07:31 AM|LINK
ty for u comment
but ip address is always changing.
i m looking for something that only bind to the login device, it is never change, or just change few times in a long period of time
just like IMEI never changed for one device, but for web sit i can not get it....
roopeshreddy
All-Star
20155 Points
3328 Posts
Re: Get unique identification from mobile device
Mar 01, 2012 07:09 AM|LINK
Hi,
Yeah! You can't get IMEI/ Unique number from Mobile device using Web application!
Alternative is, you can store cookie in the Mobile device with unique id!
NOTE:Cookies may be disabled or removed!
Hope it helps u...
Roopesh Reddy C
Roopesh's Space