Tuesday, January 3, 2012

What is partial view in ASP.NET MVC 3?

Create reusable content with Razor syntax, like user control in ASP.NET web form.



How to open a new window or tab in ActionLink

@Html.ActionLink(”New window”, "test", "Home", new { target = "_blank" })

Or use html A link directly.