I know how to create view partials, but I want to show a certain action on a certain controller, like so:
RssController -> ShowRss
/Rss/ShowRss
I want to show that page inside of this page:
MyBlog -> Index
/MyBlog
What’s the best way to do this, or am I designing this wrong?
To include another action method results to your Index view, you can call the
Html.Actionhelper Method inside theIndexView of MyBlogEDIT : As per the comment
If you do not want the
Layout, Set the Layout property value as null inShowRssview