Introduction: In this article, we will learn ASP.NET Core web API with angular 5 data binding using with ngFor. • Create SQL Server Database • Create Web API with ASP.NET Core • Install Entity Framework • Create angular 5 Application • Data Binding Using with ngFor Create SQL Server Database: Open your SQL Server, Click […]
Visual Studio
Learn WPF Using Google Place API
Introduction In this article, we will learn WPF using Google Place API with the WPF control web browser in Visual Studio 2015. In this article, we are going to: Create a WPF Application. Using Google Place API. Configure the API. Create a WPF Application Open Visual Studio 2015 Select the File menu >New > Click […]
Learn MVC Using Angular Wizard
Introduction In this article, we will learn MVC using Angular Wizard and Datatable from the server side, and work with the stored procedure using Visual Studio 2015. Why Use Wizard? Wizard means the process is moved step-by-step. It allows you to logically divide the groups of data. That way, the user can enter valuable data. […]
Learn MVC Using Angular Idle
This article demonstrates MVC using Angular Idle with a UI Bootstrap. This article will show you how to get your application to report if a user is idle. Angular Idle Angular Idle can use an Angular module to detect and respond to idle users. We can almost maintain the session on the client side. Follow […]
Learn MVC Using AngularJS And Crystal Report
Introduction In this article, we will learn MVC, using AngularJS and Crystal Report to help us handle server side data, using Visual Studio 2015. What Is Crystal Report? Crystal Report is a business intelligence application. Crystal Report is powered by SAP. It is used to design and generate reports from a wide range of data sources. […]
Learn WPF CRUD Operations Using VB.NET
In this article, we are going to: Create a database. Create stored procedures. Create a WPF application in VB.NET. Perform CRUD operations. Create a Database Open SQL Server 2016. Then, click the New Query window and run the below query.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | USE [test] GO /****** Object: Table [dbo].[EmployeeMaster] Script Date: 5/7/2017 8:07:35 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[EmployeeMaster]( [Id] [numeric](18, 0) IDENTITY(1,1) NOT NULL, [EmployeeCode] [bigint] NULL, [EmployeeName] [varchar](150) NULL, [EmployeeDob] [datetime] NULL, [EmployeeAddress] [varchar](500) NULL ) ON [PRIMARY] |
Create Stored Procedures You’ve probably used Entity Framework, but I have written the stored procedure for […]
Learn MVC Using Angular UI-Route
Angular UI is a routing framework for a client-side, single page application and navigates from one view to another view. Angular UI-Router, however, is not just the “Route URL”; it maintains the application views based on a hierarchical tree of state. UI-Router provides a different approach than ngRoute, which we will be going over in this […]
Learn Basics Of MVC Using AngularJS
Introduction Hi, audience. I thought I would share my experiences with Microsoft ASP.NET MVC and AngularJS. This article will be more helpful for “MVC with AngularJS” beginners. Which is the best technology? Why should we use MVC? Why should we use AngularJS? Why should we be using AngularJS in MVC? How to configure AngularJS in […]