This documentation is archived and is not being maintained.
HttpRequest.UserHostName Property
.NET Framework 1.1
Gets the DNS name of the remote client.
[Visual Basic] Public ReadOnly Property UserHostName As String [C#] public string UserHostName {get;} [C++] public: __property String* get_UserHostName(); [JScript] public function get UserHostName() : String;
Property Value
The DNS name of the remote client.
Example
The following example assigns the DNS name of the remote client to a string variable.
[Visual Basic] Dim ClientName As String ClientName = Request.UserHostName [C#] String ClientName; ClientName = Request.UserHostName; [C++] String* ClientName; ClientName = Request->UserHostName; [JScript] var ClientName : String = Request.UserHostName
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
HttpRequest Class | HttpRequest Members | System.Web Namespace
Show: