Author: admin
-
HTML Templates in Angular 2 (v11)
In the previous chapter, you have created an HTML template for the component. Here, you will learn HTML template in detail. HTML template is nothing but a regular HTML code with additional Angular specific syntax to communicate with the component class. HTML Template = HTML + Angular Bindings and Directives. Angular API interprets an HTML…
-
Angular 2 Components
Here, you will learn about the Angular component and how to create a custom component using Angular CLI. Angular is a SPA framework, and a view is made of one or more component. An Angular component represents a portion of a view. Generally, an interactive web page is made of HTML, CSS, and JavaScript. Angular…
-
Create Angular 2 Application
Here you will learn to create an Angular 2 (valid in the Angular 11 too) application using Angular CLI. Angular CLI helps us to set up a workspace and an initial application quickly, which includes necessary NPM libraries and other dependencies for the application. To create an initial application, navigate to the folder where you…
-
Install Angular 2 (v11)
Here you will learn how to install the latest version of Angular 2. Before installing Angular, you need to install some prerequisites. Angular uses NPM (Node Package Manager) to install libraries, packages and also to execute scripts. So, you need to install NPM before installing Angular. Angular requires a current, active LTS or maintenance LTS…
-
Angular 11 Tutorial
Angular is an open-source JavaScript MVC framework for the web applications. It extends the HTML and makes it dynamic. Angular is used to create Single Page Applications. These tutorials will help you learn the essentials of the latest version of Angular 2, starting from the basics to the advanced level. These tutorials are broken down…
-
AJAX JSON Example
We can get JSON data by AJAX code. AJAX provides facility to get response asynchronously. It doesn’t reload the page and saves bandwidth. AJAX JSON Example Let’s see a simple example of getting JSON data using AJAX code. Output:Date: Time: Load Information
-
Search Example using AJAX in Java
In this example, we are creating a form to search employee by name using ajax in java. Here, we have written the two-tier application code, to make the application easy to understand. You can write the database code, according to your standard. Steps to create search example using AJAX in Java You need to follow…
-
Comment Form Example using AJAX in Java
In this example, we are creating a form to post comment. The form data is saved in the database and a list of all posted comments are shown below the comment form. Steps to create comment form example using AJAX in Java You need to follow following steps: Create table in database In this example,…
-
Java AJAX Email Finder Example
We can create an AJAX example in Java which checks whether the given email id exists in the database or not. Steps to create email finder example using AJAX in Java You need to follow following steps: Create table in database In this example, we are using oracle 10g database. Here, we have created a…
-
Ajax Java Example with Database
In this example, we are interacting with the database. You don’t have to make any extra effort. Only write the database logic in you server side page. In this example, we have written the server side code inside the index.jsp file. Steps to create ajax example with database through jsp You need to follow following…