Is it i possible to prevent certain PartialViews from being served if requested directly?
I'm working on a site that has routes to actions which render Partial Views. A lot of these partial views are components which together make up a complete page. For instance on a search page I'm working on has a text box, a list of tabs, and a Table. Seach of these can be accessed with a URL similar to /Search/SearchPanel /Search/Tabs/{SearchTerm} /Search/ResultsTable/SearchTerm?tab=[currently selected tab] and these are all rendered on with a RenderPartial on my Index page. When the page loads, it will display each of these components the way I want it. But at the moment there's nothing