Check Javascript Disabled in Clients Browser and ASP.Net solution

These days none of the web application can work without Javascript. Q. Why should we check if javascript is disabled in the client browserA. First to provide better service to the client on UI (priority) and second to protect your application from intrusion (it can be a motive) Now it is really simple to do: … Continue reading Check Javascript Disabled in Clients Browser and ASP.Net solution

Create first program with Angular 7

Previously: For setup of Angular 7 Click Here Now as the setup of the Angular 7 is done in the system let us build out first program by following these steps. Create a folder for the application Open the folder in the CMD (Command Prompt) Now enter the command below to create program "demo-app" ng … Continue reading Create first program with Angular 7

Let us start with Angular 7

(Wiki) Intro: Angular is a JavaScript-based open-source front-end web application framework mainly maintained by Google and by a community of individuals and corporations to address many of the challenges encountered in developing single-page applications. Angular 7 is available for use recently just few days back (October 2018). So let us start with Angular 7: Prerequisite: Node.js version … Continue reading Let us start with Angular 7

Amazon Alexa Skill Development Part 6 – Publish Skill

Previously: Part 1: Introduction about Amazon Alexa. Click Here Part 2: Starting with the first Alexa Skill App Creation. Click Here Part 3: Learn about End Point in Amazon AWS. Click Here Part 4: Testing the Skill. Click Here Part 5: Build skill on multiple language. Click Here In this part we will see how to publish skill: … Continue reading Amazon Alexa Skill Development Part 6 – Publish Skill

Amazon Alexa Skill Development Part 5 – Multi Language

Previously: Part 1: Introduction about Amazon Alexa. Click Here Part 2: Starting with the first Alexa Skill App Creation. Click Here Part 3: Learn about End Point in Amazon AWS. Click Here Part 4: Testing the Skill. Click Here In this part we will see how to build skill on multiple language: Now as we build an skill … Continue reading Amazon Alexa Skill Development Part 5 – Multi Language

Amazon Alexa Skill Development Part 4 – Test Skill

Previously: Part 1: Introduction about Amazon Alexa. Click Here Part 2: Starting with the first Alexa Skill App Creation. Click Here Part 3: Learn about End Point in Amazon AWS. Click Here In this part we will see about testing the Skill: Now as our app is built and connected to End Point we can test it … Continue reading Amazon Alexa Skill Development Part 4 – Test Skill

Amazon Alexa Skill Development Part 3 – End Points

Previously: Part 1: Introduction about Amazon Alexa. Click Here Part 2: Starting with the first Alexa Skill App Creation. Click Here In this Part we will see Learn about End Point in Amazon AWS: Now when the skill is ready and built we need to put the End Point to make the skill make some proper … Continue reading Amazon Alexa Skill Development Part 3 – End Points

Amazon Alexa Skill Development Part 2 – First Skill

Previously Part 1: Introduction about Amazon Alexa. Click Here Starting with the first Alexa Skill App Creation Let us start with our first skill: We will be making a Joke App named "Comedy Jokes" which will serve some jokes whenever user prompts "Alexa, open comedy jokes" Let us start with the Amazon alexa dev account: … Continue reading Amazon Alexa Skill Development Part 2 – First Skill

Amazon Alexa Skill Development Part 1 -Intro

About Amazon Alexa With the power of AI reaching the hand of people by different means (Active or Passive formats) Amazon presented the world with an AI bot named "Alexa". Alexa is a bot for the user who actively participate to take care of users need. Few activities that can be done by Alexa are: … Continue reading Amazon Alexa Skill Development Part 1 -Intro

Angular 5 Services

Previously: Setup Angular 5 click here Startup with Angular 5 base code click here Angular 5 Components click here Angular 5 Interpolation, Property & Event Binding click here Angular 5 Route click here   Now in this part we will be discussing about Angular 5 Services: Let us create a service say “data” $ ng g service data Let us … Continue reading Angular 5 Services