Request.ServerVariables

    1. 客户端ip:  
    2. Request.ServerVariables.Get("Remote_Addr").ToString();  
    3. 客户端主机名:  
    4. Request.ServerVariables.Get("Remote_Host").ToString();  
    5. 客户端浏览器IE:  
    6. Request.Browser.Browser;  
    7. 客户端浏览器 版本号:  
    8. Request.Browser.MajorVersion;  
    9. 客户端操作系统:  
    10. Request.Browser.Platform;  
    11. 服务器ip:  
    12. Request.ServerVariables.Get("Local_Addr").ToString();  
    13. 服务器名:  
    14. Request.ServerVariables.Get("Server_Name").ToString(); 
菜鸟-潜水中
原文地址:https://www.cnblogs.com/C-CHERS/p/4479208.html