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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T01:15:01+00:00 2026-05-13T01:15:01+00:00

Is it possible to load external web-parts in an ASP.NET website? I would like

  • 0

Is it possible to load external “web-parts” in an ASP.NET website? I would like to make stand-alone dll’s containing a User-Control or Page to include in a main site. Like a plug-in architecture for websites.

The only examples I can seem to find bind the user control to the main project, you need to have a “hard” reference to the control.

What I would like is to define a shared interface which the plugins can implement, and the website can load and display.

  • 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-13T01:15:01+00:00Added an answer on May 13, 2026 at 1:15 am

    There is a discussion over here about compiling UserControls into dlls

    ASP.NET UserControl class library

    For something like what you are describing, I would highly recommend creating custom server controls. You could provide an abstract base class for all plug ins.

    public abstract class PluginBase : WebControl {
    
    }
    

    Then you could search a directory for assemblies and search each assembly for anything deriving from that type.

        DirectoryInfo di = new DirectoryInfo(path);
        FileInfo[] assemblies = di.GetFiles("*.dll");
        foreach (var assembly in assemblies) {
            Assembly a = Assembly.LoadFrom(assembly.FullName);
            foreach (Type type in a.GetTypes()) {
                if (type.BaseType == typeof(PluginBase)) {                     
                    //load plugin
                }
            } 
        }
    

    You can also register your plug ins in your web.config by providing a config section like the example here

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

Sidebar

Related Questions

I would like to know if it is possible to load an external movie
I'd like to load/insert an external html page into my web page. Example :
Is it possible to load a User Control that was registered in the web.config
Is it possible to load content from an external page (not relative) into div
I would like to store the resource files (containing texts for labels etc.) for
Is it possible to load an external HTML file into a variable and then
i’m wondering if it’s possible to load code from an external file to be
My goal is to load an external class in a running application environment (like
Is it possible to load activities from an external dex-file? I'm thinking of some
Is it possible to load activities from an external dex-file? I'm thinking of some

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.