The question is - how can I find the IP addresses that accessed a specific address?
If the "specific address" is your server, then
public static String GetIP() { String ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if(string.IsNullOrEmpty(ip)) { ip = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; } return ip; }
Source: https://ru.stackoverflow.com/questions/42379/More articles:Family tree algorithmHtml lessonsData transfer to PHP script through curl library in C ++Syntax errorAlgorithm of list data conversionWhy is the site crookedly displayed in internet explorer? [closed]CSS tutorials [closed]Only studied a little java. How to consolidate knowledge in practice? [closed]Thread-safe operation with MultiValueMapMeta tags using phpAll Articles