J Jeff S Nov 6, 2003 #1 How can I determine the IP address of users creating new sessions of my ASP.NET application?
O Oliver Nov 6, 2003 #2 Hi Jeff, You could open the global.asax.vb file and store the UserHostAddress when the session is created. Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) ' Request.UserHostAddress gets the IP address End Sub
Hi Jeff, You could open the global.asax.vb file and store the UserHostAddress when the session is created. Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) ' Request.UserHostAddress gets the IP address End Sub