Showing posts with label Client IP address. Show all posts
Showing posts with label Client IP address. Show all posts

Friday, October 8, 2010

Get Client Machine IP Address

/// <summary>
/// Method to get Client IP number
/// </summary>
/// <returns>IP Address</returns>
private string GetIPNumber()
{
return Request.UserHostAddress;
}