Is it possible to compile a web application project .ascx (user control) into a dll?
I want to do the following:
- Use the same control in multiple websites
- Embed css and .js as resources into the control
- Be able to update super easy. If the user control updates, I just want to update 1 .dll
I have successfully followed this article, http://msdn.microsoft.com/en-us/library/aa479318.aspx.
However, that uses web site projects, and I cannot embed js css as resources into web site projects.
Any ideas? Am I going about this wrong, should I change the approach?