Very often you'll have a larger system containing 2-10 views, which then again need to re-use parts of each other. For example, re-using an "Author" template in a blog for the list, details, search-by-author and search-by-tag views. Here's how.
The Basic Partial-Template/View
In general, you just place your sub-snippet in an own file (remember to prefix the name with a "_" for security reasons). If this partial template doesn't need any parameters passed in, then it's just like any razor file. Here's an example: