Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - June 03, 2021
Table of Content 1. What is Overloading? 2. What is ASP.NET Filter? 3. What is Action Filter? 4. Steps to create a custom Action Filter 4.1. Possible levels of Action Filters 5. Method Overloading in MVC 6. How to overload the Action Method in MVC? 7. Conclusion What is Overloading? In any Object-Oriented Programming Language, there is a concept called Method Overloading. It simply means to have two or more functions or methods with...
Kapil Panchal - June 01, 2021
Table of Content 1. Introduction 2. STEP 1 - Create an ASP.NET Web Application. 3. STEP 2 - Install DotNet.Highcharts Package. 4. STEP 3 - Create Highcharts in the project 5. STEP 4 - Rendering of highcharts on UI 6. Conclusion Introduction These days, users are more inclined towards visual representations such as graphs, charts, pie diagrams, etc. to understand the data quickly, which a plain table won’t demonstrate important relationships easily between...
Kapil Panchal - May 25, 2021
Microsoft said the release of Visual Studio 2022 will be faster, more accessible, and lightweight. And for the first time, Visual Studio will be a 64-bit application. Visual Studio 2022 is being designed for both learners and those who create solutions on an industrial scale. As VS 2022 is a 64-bit application, it'll not be restricted to 4GB of memory within the main devenv.exe method. You'll be able to open, edit, run, and debug the largest and most complex solutions without running out...
Kapil Panchal - April 16, 2021
In earlier days, there was no separation between the front end and back end, and these applications were treated as one. The authentication and authorization in web API can be done using cookies in the same way for a normal web application. The main advantage of using the cookie is to set it up easier than the JWT token. To secure web apps cookie-based authentication is the most popular choice. Table of Content 1. Cookie Options 2. Server Configuration 3. Defining...
Kapil Panchal - April 07, 2021
In this blog, we will be going to talk about how to use the SQLite local Database in Xamarin.Forms with crud operation. This article describes how to use SQLite.Net as shared code to store and extract information into a local database. Table of Content 1. SQLite Means 2. How to use SQLite Database in Xamarin forms with Crud Operation? 3. Conclusion SQLite Means SQLite is a popular choice of local database storage in application software. It is probably...