by Yogesh | May 16, 2020 | React Native tutorial
Environment setup of React Native : Two Options : Expo – React Native Cli Install Expo- CLi : npm i –g expo-cli Check Version : expo –version Create New App : expo init projectname We have a file with the name app.js which is the entry file for react native app. We...
by Yogesh | Mar 28, 2020 | .NET Core 2.0 and Angular 4 Tutorial, Asp .net MVC
IFormCollection action parameter in ASP.NET Core 2|3 Action Parameter An action method can take parameters. These parameters are, for example, submitted form values or query string parameters. There are essentially three ways by which we can get all the submitted...
by Yogesh | Jan 10, 2020 | Angula 7 tutorial, Angular 4 Tutorial
Conditional row background color change in angular using ngClass In this tutorial, we are going to see how we can use ngClass in ngFor directive as per any given condition so we will use ngFor and ngClass together in this block of code. Step 1: Create a model class...
by Yogesh | Nov 3, 2019 | ASP.NET Core 2 Tutorial
Default files in an ASP.NET Core project You have probably noticed by now that your empty project is not entirely empty, and does, in fact, include a couple of files: Program.cs: This is the entry point of the application. It loads configuration, initiates the logging...
by Yogesh | Sep 18, 2019 | Asp .net MVC, ASP.NET Core 2 Tutorial
View Components: The view component is a class that inherits from ViewComponent and exposes an InvokeAsync method whose signature matches the input data you might be passing from the view in Razor. Here’s a reasonable layout for the view component core code. It is a...