Skip to content Skip to footer

Author page: Shravan Kumar Kasagoni

aspnet

Bundling & Minification with dot-less (dynamic CSS for .NET) in MVC 4

LESS is the dynamic style sheet language LESS extends CSS with dynamic behaviour such as variables, mixins, operations and functions. LESS runs on both the client-side (Chrome, Safari, Firefox) and server-side, with Node.js and Rhino. .less is the LESS JavaScript library implementation for .NET, Find more info about .less at http://www.dotlesscss.org/. This article is going…

Read more

aspnet

Difference between Html.RenderAction and Html.Action

Html.RenderAction() and Html.Action()  methods   are available in ChildActionExtensions (System.Web.Mvc.Html) class in ASP.NET MVC. Generally both methods are used for calling action methods or child action methods  and rendering the result of action method in view. @Html.Action() – Invokes the specified child action method and returns the result as an HTML string. @{ Html.RenderAction(); } –…

Read more