سؤال

Possible Duplicates:
How to get my own IP address in C#?
How to Get IP Address?

I want to store the IP Address to the DataBase table through C#.Net coding. How to get the static IP Address(What we get from www.whatismyip.com) using C#.Net? What are the ways to retrieve it?

هل كانت مفيدة؟

المحلول

You can get it through HttpContext.Current.Request.UserHostName

نصائح أخرى

You can get it like this:

HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top