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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:56:56+00:00 2026-05-11T20:56:56+00:00

We have a set of code that is going to be used in both

  • 0

We have a set of code that is going to be used in both standalone ASP.NET and SharePoint. I’m wondering if there’s any legitimate way to write conditional code in the CS file to detect whether SharePoint is present?

It needs to be able to run in or before OnPreInit, because based on this decision we’ll be switching the MasterPageFile attribute, and that needs to be done early in the page lifecycle.

I suppose I can do something like checking for the existence of a “~/layouts” directory, etc. but there must be a better way to do this. And besides, who knows – for compatibility reasons (location of images, etc) we might actually adopt the SharePoint directory structure in the ASP.NET standalone mode.

It’s okay to require the Microsoft.SharePoint.DLL even if it goes mostly unused when running standalone.

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-11T20:56:57+00:00Added an answer on May 11, 2026 at 8:56 pm

    Since you are allowed to reference Microsoft.SharePoint:

    using Microsoft.SharePoint;
    // ...
    
    if (SPContext.Current == null)
        // Not running in SharePoint
    else
        // Running in SharePoint
    

    Edit — alternate approach taking NullReferenceException into consideration:

    bool runningInSharePoint = false;
    try
    {
        if (SPContext.Current != null)
            runningInSharePoint = true;
    }
    catch (NullReferenceException e)
    {
        // SharePoint is not present on the system
    }
    

    The above assumes that the exception you mentioned is thrown when accessing SPContext, not earlier.

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

Sidebar

Related Questions

I have some code that produces a set of primary key values that I
I currently have CruiseControl.NET set up with SVN to automatically grab the code source
I have code that manipulates binary files using fstream with the binary flag set
This is going to sound quite bizarre. I have one ASP .NET MVC 2
I have set up a Django application that uses images. I think I have
We're seeing an odd pattern in our QA Lab. We have two ASP.NET applications,
I have a set of numbers that I need to pass from a function
Sometimes I come across this problem where you have a set of functions that
I have a set of stored procedures that I am using to populate an
We have set up a system where notifications get sent to a user with

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.