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

  • Home
  • SEARCH
  • 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 7761123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:03:50+00:00 2026-06-01T14:03:50+00:00

What I am trying to do is basically be able to type in to

  • 0

What I am trying to do is basically be able to type in to the web address mysite/username and it will redirect them to there page (mysite/Profle/Default.aspx?username=username) according to there username.

  • 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-06-01T14:03:51+00:00Added an answer on June 1, 2026 at 2:03 pm

    I think this might call for more than URL rewriting.

    Since there is no real difference (distinguishable by a urlrewrite regex) between mysite/username and mysite/directory, you may need to do something more like this.

    In your global.asax, override the BeginRequest function. Check if the request path matches a known user name. If it does, redirect. If it does not, let the request continue naturally. Beware that this could give you trouble if you have a user name that matches a directory in your site. Also, it does expose a way (albeit time-consuming) for a malicious user to find out user names for your site by learning which names redirect to the login page.

        protected void Application_BeginRequest(object sender, EventArgs e)
        {
            var url = HttpContext.Current.Request.RawUrl;
    
            IEnumerable<string> userNames = GetKnownUserNames(); //Get known user names from your repository
    
            if (userNames.Contains(url))
            {
                Response.Redirect(String.Format("mysite/Profle/Default.aspx?username={0}", url));
            }
        }
    

    You may have to do some tweaking to get the comparisons working just right, but this will do it.

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

Sidebar

Related Questions

I'm basically trying to do a dropdown jquery plugin. HTML <script type='text/javascript' src='script.js'></script> <div
I'm trying to map an array into an ICollection of type <T>. Basically I
I am basically trying to trigger a function if the footer is inside the
I'm basically trying to convert a Unix timestamp (the time() function) to a relative
I'm basically trying to pass a method to another class to be called later,
I'm basically trying to get the target element from event.target and if not equal
I'm basically trying to play with recursions and created a small program that finds
I'm basically trying to create a 2 column div with a liquid <h1> and
I'm trying to basically trying to separate a specific amount of text from the
im stuck with a problem im basically trying to create a function where I

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.