Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
137 views
in Technique[技术] by (71.8m points)

What is the correct place for Partial Views in ASP.NET MVC?

Would someone confirm the best place for a partial view in ASP.NET MVC?

My thinkings are if it's a global view that's going to be used in many places then SHARED.

If it's part of a view that's been wrapped up into a partial view to make code reading easier, then it should go into the Views/Controller directory

Am I correct or am I missing something?

question from:https://stackoverflow.com/questions/4092884/what-is-the-correct-place-for-partial-views-in-asp-net-mvc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I believe you are correct. Here is an example of something I do, general navigation partial views in my Shared directory. and then a partial views for a specific Controller in the Views/[ControllerName] Directory.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...