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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T05:31:27+00:00 2026-05-14T05:31:27+00:00

I need to redirect a user to a different page if they visit a

  • 0

I need to redirect a user to a different page if they visit a certain set of pages in a web. There is one condition: I’m not allowed to touch the IIS. I have googled around and found a thing called the custom HttpHandler for WSS 3.0. It sounded like something that I can use to capture the URL the user enters (the most malicious way to get to a page that should really be redirected) and redirect them to another page/web. But having not have the chance to use it yet, I was wondering am I on the right track by using a Custom HttpHandler to redirect a user to a different page in Sharepoint using C#?

Many thanks.

  • 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-14T05:31:27+00:00Added an answer on May 14, 2026 at 5:31 am

    HttpHandlers are used by IIS to “handle” different document types, for instance you have separate .asmx handle, .aspx handler, .ascx handler, etc.

    Look into SPUtility.Redirect

    You can use the SPUtility.Redirect method whenever you want to direct the user to a different page. For example, you might create a landing page that determines the user’s role membership, and based on that information you can redirect them to an appropriate page. Or, based on the contents of a query string issued by the user’s browser, you might redirect them to a page that can process the query string, such as the Search Center results page.

    Alternatively, you can look into Using Disposable Windows SharePoint Services Objects.

    –EDIT–

    This is in response to your comment; you are thinking in the right direction

    1. Create a custom HttpHandler; Example 1, Example 2
    2. Whenever a user requests a url, your custom HttpHandler is going to process that.
    3. Redirect() if you like the url, else otherwise.

    But for your Custom HttpHandler to work, it should be called first – so in your config file you will have to provide the value in path. Usually an extension is added here. But you can replace that with a * to work for all request. I believe that would work.

    <httpHandlers>
        <add verb="*" path="*.aspx" type="MyNameSpace.MyHttpHandler, MyAssemblyName" />
    </httpHandlers>
    

    –EDIT–

    This is in response to your comment. Assuming that you have “access” to pages so that you can write javascript in it, you can use the javascript in following way.

    <script language=JavaScript>
    function RedirectIfUnAuthorized()
    {
        //Get the location of the current page.
        var currentUrl = new String( document.location.href ) 
    
        //See if it belongs to the urls you are looking for; redirect if so.
        if (currentUrl == "http://www.thisUrl.com/page1.aspx") {Response.Redirect("http://www.GOOGLE.com")}
        if (currentUrl == "http://www.thisUrl.com/page2.aspx") {Response.Redirect("http://www.BING.com")}
        if (currentUrl == "http://www.thisUrl.com/page3.aspx") {Response.Redirect("http://www.someother.com")}
    }
    </script>
    

    You may call the above javascript in the page’s OnLoad event.

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

Sidebar

Related Questions

I need to redirect the user to page not found page if the url
I need to redirect the user from one page to another, but I need
What we need: redirect to each user's specific page after their login. What we
I need to permanent redirect some pages, and redirect the user to the new
I am using Zend Framework(MVC part of it), and need to either redirect user
i need to check whether the user clicking the browser Refresh button and redirect
I need to redirect users to the Change Password page if their password has
I need to redirect all page requests (php, if that matters) on a specific
After creating a PDF file in PHP Using DOMPDF, I need to redirect user
I'm replacing an old web application with a new one, with different structure. 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.