Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1066735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:03:37+00:00 2026-05-16T20:03:37+00:00

I want to use variable iso3166TwoLetterCode’s value from this class, Geolocation error with IP

  • 0

I want to use variable “iso3166TwoLetterCode”‘s value from this class, Geolocation error with IP address 127.0.0.1

In my new test class, how do I use it? Can I even use it? If yes, how? I need this variable to use it in the if statement to check country code and based on the country code, the master page is to be changed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:03:38+00:00Added an answer on May 16, 2026 at 8:03 pm

    I would recommend you extracting this functionality into some utility class that you could reuse from both PageA and PageB:

    public class Country
    {
        public string Name { get; set; }
        public string Iso3166TwoLetterCode { get; set; }
    
        public static Country GetCountry(string userHost)
        {
            IPAddress ipAddress;
            if (IPAddress.TryParse(userHost, out ipAddress))
            {
                return new Country 
                {
                    Name = ipAddress.Country(),
                    Iso3166TwoLetterCode = ipAddress.Iso3166TwoLetterCode()
                };
            }
            return null;
        }
    }
    

    And then in your page:

    protected void Page_Load(object sender, EventArgs e)
    {
        //Code to fetch IP address of user begins
        string userHost = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
        if (String.IsNullOrEmpty(userHost) ||
            String.Compare(userHost, "unknown", true) == 0)
        {
            userHost = Request.Params["REMOTE_ADDR"];
        }
    
        Label1.Text = userHost;
        var country = Country.GetCountry(userHost);
        if (country != null)
        {
            Label2.Text = country.Name;
            Label3.Text = country.Iso3166TwoLetterCode;
        }
    }
    

    Now you could reuse the Country class from another page. Depending on your requirements you could even further customize it by passing additional parameters to the function and the return type.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use a variable in a regex, like this: variables = ['variableA','variableB']
i declare a variable in one class and want to use that variable in
I want to use a form variable inside a cakephp model class variable $actsAs.Below
I'm designing a declarative language for defining signal networks. I want to use variable
I (i'll try) explain my problem :p I want to use a variable javascript
I want to use the same variable name with a different datatype in C
I want to use a global variable for using as argument for two or
I want to use a bunch of local variables defined in a function, outside
I have below test cases as input: [This is my test] [This is my
How to declare and use global variable with extern in Objective C and other

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.