Hi friends good morning,,
i need to track IP address and to store them, how can i do this. (Means is there any inbuilt function or library that will let me do this).
Regards
yashvant.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rahul Kumar SaxenaPosted May 17, 2010, 12:59 AM
Hi yashwant
if you are working in web application then use these...
HttpBrowserCapabilities browser = Request.Browser;
string BrowserType = browser.Type;
string BrowserVersion = browser.Version;
string IPAddress = Request.ServerVariables[33].ToString();
DRISHTYPosted May 17, 2010, 12:27 AM
Please go through following link :
http://www.codeproject.com/KB/cs/network.aspx