Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Allowing custom extensions 1

Status
Not open for further replies.

ca8msm

Programmer
May 9, 2002
11,327
GB
We have a few webform based applications that allow other teams of developers to extend the core application and add their own modules into the system. This is relatively straight-forward and can be done decorating their classes with a extension tag that we then use to load their modules e.g.


What would be the recommeded way of achieving the same functionality using MVC? Could I follow the same procedure?

Thanks,

Mark,

Darlington Web Design[tab]|[tab]Experts, Information, Ideas & Knowledge[tab]|[tab]ASP.NET Tips & Tricks
 
you could probably do something similar except dump binaries into another directory (extensions/plugins/etc). of you want the full presentation stack, similar to a compiled web user control, check out Portable Areas.

You might even be able get a file system watcher to monitor the plugins directory and automatically (re)load extensions points when the files are added/changed negating the need for a system reboot.

is that what your going for?

Jason Meckley
Programmer
Specialty Bakers, Inc.

faq855-7190
faq732-7259
 
Thank you, our current approach is generally used by other teams who wish to retain the full presentation of the existing site, but add their own pages and interact with the core functionality of the site.

I'll check out the Portable Areas and see if that look like it will work.

Mark,

Darlington Web Design[tab]|[tab]Experts, Information, Ideas & Knowledge[tab]|[tab]ASP.NET Tips & Tricks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top