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 3280476
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:42:31+00:00 2026-05-17T19:42:31+00:00

I need to fetch the domain name and path from the request to provide

  • 0

I need to fetch the domain name and path from the request to provide the following return values:

domain1.com/default.aspx    returns      domain1.com/default.aspx
domain1.com/                returns      domain1.com/
domain1.com                 returns      domain1.com

At the moment every URL fetch function I try seems to return domain.com/default.aspx no matter what the address bar in my browser says. Any solution to this?

I’ve tried lots of different built-in functions to retrieve parts of the request but none seem to provide the desired results.

  • 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-17T19:42:32+00:00Added an answer on May 17, 2026 at 7:42 pm

    There is a solution to your problem.

    HttpContext.Current.Request.Urlwill return a Uri object that contains all the parts of the URL broken down for you. From that, you should be able to get what you’re looking for. Specifically, the property you want is Uri.Authority.

    EDIT: Try something like this:

        public static string GetPath(this HttpRequest request)
        {
            var authority = request.Url.Authority;
            var pathAndQuery = request.Url.PathAndQuery;
            var query = request.Url.Query;
            var path = pathAndQuery.Substring(0, 
                           pathAndQuery.Length - query.Length));
    
            if (!authority.EndsWith("/"))
                authority += "/";
    
            return authority + path;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need to fetch data from the following strings and need to place their
I need to fetch some values obtained from an web URL. The JSON is
Im using vb.net and I need to fetch data from two different tables and
I need to fetch a number of rows between two column values, using a
I need to fetch HTML from Turkish webpages using Java. However, I am finding
For some reason I need to fetch emails from /var/mail/username file. It seems like
I need to fetch everything from a few different, distinct repositories (all remote branches
I need to fetch some data over the cloud from my app. I've watched
Can this ever make sense? Say I need to fetch an object from the
Need to fetch data from a few tables -table one has all product details

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.