get client information
-
hello all, I made a web form, i put a button control on one of its forms, i want to get all of the client data such as: client's computer id, ip address, ...... how i can get these data??? need code f u can gys ;-)
Thanks alot Hamody
-
hello all, I made a web form, i put a button control on one of its forms, i want to get all of the client data such as: client's computer id, ip address, ...... how i can get these data??? need code f u can gys ;-)
Thanks alot Hamody
-
hello all, I made a web form, i put a button control on one of its forms, i want to get all of the client data such as: client's computer id, ip address, ...... how i can get these data??? need code f u can gys ;-)
Thanks alot Hamody
You can use the Request object to get a decent amount of information from each user. e.g. C#
bool hasCookies = Page.Request.Browser.Cookies;
VBDim hasCookies as Boolean = Page.Request.Browser.Cookies
Hope this helps!