How do I share user controls between web applications in ASP.NET?

前端 未结 7 1661
广开言路
广开言路 2020-12-30 07:10

This question is a follow up to my question about sharing resources between web applications, because I have not yet found a good solution.

I have a web application

7条回答
  •  被撕碎了的回忆
    2020-12-30 07:48

    In order to share controls between web apps, the only way I found was to either rewrite them into server controls or to use virtual directory to make the user controls actually in folder be in each project.

    Unfortunately, asp.net doesn't really have a good solution for this. The same is true for sharing master pages.

提交回复
热议问题