捕获访问者的IP:Request.UserHostAddress至于浏览器属性我就不知道了.

解决方案 »

  1.   

    装个MSDN,上面都有,
    这些都可以从Request里面的属性得到
      

  2.   

    IP地址:this.Request.UserHostAddress
    浏览器属性:this.Request.Browser
    this.Request.Browser.MajorVersion
      

  3.   

    me.lbl_1.text=HttpContext.Current.Request.Browser.tostring()
    me.lbl_2.text= HttpContext.Current.Request.UserHostAddress.tostring()..................
    ....................
      

  4.   

    or:Dim IP As String = Request.UserHostAddress
    Dim ClientBR As HttpBrowserCapabilities = Request.Browser
    Dim BrName,BrType as string
            BrName=ClientBr.Browser
            BrType=ClientBr.Type