How to create HTML 5 canvas Line chart using asp.net mvc chart control? By: Mohamed Rasik 30 August 2016 In this article I will show you how to create HTML 5 canvas Multi Line series chart from database in asp.net MVC c# implemented using chart.js. Read More
How to create HTML 5 canvas chart from database using jQuery chart.js in asp.net MVC c#? By: Mohamed Rasik 26 August 2016 In this article I will show you how to create 5 canvas charts from database in asp.net MVC c# implemented using chart.js. Read More
@Html is not working for razor helper view file in App_Code folder By: Mohamed Rasik 11 August 2016 I have created Helper file that is not accessible from App_Code folder and also HtmlHelper is getting null while running. It was resolved by get helpers from the PageContext Read More
The following sections have been defined but have not been rendered for the layout page "~/Views/Shared/_Layout.cshtml": "Scripts". By: Mohamed Rasik 10 August 2016 I got the following error while running the application I resolved it by adding @RenderSectrion(“Scripts”,required:false) in the _Layout page. Read More
How to get websites favicon in mvc asp.net? By: Mohamed Rasik 27 July 2016 You can use HTML agility pack or XmlDocument and get favicon. The following code will bring the path of website’s icon. Read More
Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral or one of its dependencies By: Mohamed Rasik 14 July 2016 The cause of the error due to missing the Microsoft Aspnet mvc you needed to install to the project by using Package manager console. Read More
Could not load file or assembly 'System.Web.Helpers' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. By: Mohamed Rasik 14 July 2016 You need to Uninstall Microsoft Aspnet mvc from the project by using Package manager console and reinstall it. Read More
How to extract favicon from a webpage URL? By: Mohamed Rasik 10 July 2016 When you pass URL of web page to the function and it will result the icon of the website. Read More
Redirect to external URL from controller asp.net MVC By: Mohamed Rasik 9 July 2016 You can redirect to an external URL by using Redirect Method() or via Json Result. Read More
The "RenderBody" method has not been called for layout page By: Mohamed Rasik 8 July 2016 You should insert @RenderBody() inside the Layout page. Read More