TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Different Ways of Rendering a Partial View in ASP.NET MVC
Rahul Kumar Saxena
Mar 03, 2015
11.7
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog show different ways of render a partial view in ASP.NET MVC?
Html.RenderPartial
@{Html.RenderPartial(
"_Technology"
);}
Html.RenderAction
@{Html.RenderAction(
"Technology"
,
"Home"
);}
Html.Partial
@Html.Partial(
"_Technology"
)
Html.Action
@{Html.Action(
"Technology"
,
"Home"
);}
Different ways of rendering a Partial View in ASP.NET MVC
Next Recommended Reading
Submitting A Form To Different Action Methods In ASP.NET MVC