views:

41

answers:

2

Does anyone know a good way to embed user controls inside an assenbly so they can be reused across projects. I am not looking to create custom web controls. I have ascx files from different projects which I want to centrally use.

A: 

See the question here: http://stackoverflow.com/questions/28051/best-way-to-share-asp-net-ascx-controls-across-different-website-applications

One person suggested following this tutorial: Creating and Using User Control Libraries

Codesleuth
I was looking something along the lines of http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx?msg=1782921
chugh97
Any particular reason you'd like to load the controls that way?
Codesleuth
+1  A: 

http://www.alexandre-gomes.com/?p=142 was the best one I found so far...

chugh97