in classical ASP, i can get the Ip address of a client connecting 2 my web application( SERVER Variables of the Request object), am trying 2 figure out how 2 do this in ASP.NET, any clue plz?
Printable View
in classical ASP, i can get the Ip address of a client connecting 2 my web application( SERVER Variables of the Request object), am trying 2 figure out how 2 do this in ASP.NET, any clue plz?
found it!
MsgBox(Request.RequestType)
MsgBox(Request.UserHostAddress)
MsgBox(Request.UserHostName)