Fundamental of VB .Net

Introduction of Fundamentals of VB .Net Microsoft Visual Studio is a well-developed Integrated Development Environment (IDE) of Microsoft Incorporation which is used to develop console and graphical user interface applications along with Windows Forms applications, websites, web applications, web services, etc. …

Loading

.Net Framework Architecture

History of .Net Framework Architecture The Development of .Net Framework Architecture was started in 1998 by Microsoft Inc. Finally, in December, the first commercially stable forms came on the market in Feb 2002. Introduction of .Net Framework Architecture Microsoft has …

Loading

Apply Style/CSS using JS

Example : How to change the style/css of html element’s using Java Script. Example : How to hide/display the contents of html element’s using Java Script. Example : How to display the hide contents of html element’s using Java Script.

Loading

Misc. Codes in JS

Example : How to Use/Call External JavaScript file in an HTML Page. Example : How to move the cursor in the next HTML element/control/box by pressing Enter key/button [Enter Key Event]. Example : How to redirect/forward web page using Java Script [Redirect Page]. …

Loading

JS Class & Objects

JS Classes In JavaScript, classes were introduced in ECMAScript 2015 (ES6) as a new way of defining objects and object-oriented programming. A class in JavaScript is a blueprint for creating objects with properties and methods. To create a class in …

Loading

JS Functions

Definition Function is a named block of statements which can be executed/used as per need again and again in the program simply by writing its name and can return some value. Features It is useful in making a program modular …

Loading

JS Events

Introduction JavaScript’s interaction with HTML is handled through various events that usually occur when the user or the browser manipulates a web page. Definition An event is an activity associated with certain manipulation occurring with a web page. Features Events …

Loading

JS String Examples

Example : A JS program to display string output. Example : A JS program to display the string length. Example : A JS program to accept string from user and display them. Example : A JS program to display a …

Loading

JS Array

Introduction In JavaScript, an array is a multivariant & linear container to store different types of data. Definition In JavaScript, an array is a data structure that can store a collection of values of any data type, including numbers, strings, …

Loading

JS Control Statements

JS control statements are categorized into – (A) Decision Statements (B) Looping Statements (C) Jumping Statements (A) Decision/Conditional Statements: JavaScript supports the following decision statements:- (I) If statement (II) If-else statement (III) Else-if statement (IV) Switch case statement (I) If …

Loading