I'm still beginning in Web App development and I have a question to ask to any veteran developers.
In my MVC-App I have a part that will be used several times. This part is a search filter for the items my MVC-App manages.
What I want to do is develop this part once so that it may be used by every parts on my app that needs it. That way, if I need to edit this part, I can do so at the basic instance instead of each places I introduced this features, and the modifications will be carried over in a single shot.
So far I know a bit about Partial Views, and right now I'm exploring Web Forms and how they works.
My question is: what would be the best way to develop such a feature? Should I build a partial view that I render each time I need it, and if so, how may I do this? Or should I concentrate on building a web form? Or is there a better way?
Thank you for your answer.