YosrJ
YosrJ

Reputation: 121

Html helpers project visible by another project

I need to put my html helpers created in a separate project and I want those Helpers to be visible and usable in another project. How we can do this .is it possible?

Upvotes: 0

Views: 88

Answers (1)

teo van kot
teo van kot

Reputation: 12491

As far as i know if you creating your own HtmlHelper you should create static class in System.Web.Mvc.Html namespace.

So nobody forbids you to crate library type project (dll) in VS, create all your helpers there and then add refference to your MVC projects where you need your helpers.

Upvotes: 2

Related Questions