mrblah
mrblah

Reputation: 103707

rendering/re-usable content in asp.net mvc, what are my options?

In webforms, if I wanted to display a list of categories I would create a category control. this control would either take in parameters or analyze the current url and list the categories and breadcrumb as appropriate.

What options do I have with asp.net mvc?

Upvotes: 0

Views: 59

Answers (1)

Justin Niessner
Justin Niessner

Reputation: 245509

Partial Views

You can find more View and UI Rendering techniques here:

Views and UI Rendering in MVC Applications

Upvotes: 2

Related Questions