In this article we will learn how to Display TextBox value in Alert using jQuery. When you will clicked on button the Textbox value is displayed in the JavaScript Alert Box. In this blog we will see how to Display TextBox value in Alert using jQuery. When you will clicked on button the Textbox value is displayed in the JavaScript…
Program to check Number is Even or Odd in Java Program
In this article we will learn Program to check Number is Even or Odd in Java. Write this code for Program to check Number is Even or Odd in Java Program [php] import java.util.Scanner; class CheckNumberIsEvenOdd { public static void main(String args[]) { int number; Scanner sc=new Scanner(System.in); System.out.println("Enter an Integer number:"); //The input provided by user is stored in…
Factorial program in Java
In this article we will learn about Factorial program in Java. Factorial Program : The factorial of n is denoted by n! and calculated by the integer numbers from 1 to n. Example 5!=5*4*3*2*1=120 4! = 4*3*2*1=24 Factorial program in Java Find Factorial of a number using for loop. [php] import java.util.Scanner; class FacorialProgramExample { public static void main(String args[])…
Prime Number Program in Java
In this article we will learn how to find Prime Number Program in Java. Prime Number : Prime number is a number that is greater than 1 and divided by 1 or itself only. In simple words, prime numbers can’t be divided by other numbers than itself or 1. For example 2, 3, 5, 7, 11…. are the prime numbers.…
Delete a Cookie in ASP.Net MVC
In this article we will learn , how to Delete a Cookie in ASP.Net MVC. Cookies cannot be cleared, it can be made to expire by setting its Expiry Date to a Past Date in ASP.Net MVC. Home Controller The Home Controller have two Action methods. Action method for handling GET operation. Inside this Action method, first a check is…
Check Leap Year using VB.NET
In this blog we will learn Check Leap Year using VB.NET. In this blog we will check the provided year is leap year or not? Code for Check Leap Year using VB.NET [php] using System; namespace Program { class Program { static void Main(string[] args) { Console.WriteLine("Enter Year : "); int Year = int.Parse(Console.ReadLine()); if (((Year % 4 == 0)…
Find LCM of Two Numbers Using VB.NET
In this blog we will learn Find LCM of Two Numbers Using VB.NET. In this article I will explain how to find the Lowest Common Multiples of two numbers in a VB.NET. What is a LCM ? LCM Stands for Lowest Common Multiple of two numbers. Code for Find LCM of Two Numbers Using VB.NET. [php] Imports System Module Program…
Program to Find LCM using VB.NET
In this blog we will learn Program to Find LCM using VB.NET. In this article I will explain how to find the Lowest Common Multiples of two numbers in a VB.NET. What is a LCM ? LCM Stands for Lowest Common Multiple of two numbers. Code for Find LCM of Two Numbers using VB.NET Imports System Module Program Sub Main(args…
Save file in to database in asp.net core mvc
In this article we will learn Save file in to database in asp.net core MVC. In this blog we will see File upload and save file in to database in asp.net core MVC. Step 1. Open visual studio 2017 and select ASP.NET Core Web Application, and then will click on “OK” button. Step 2. In this step we will select…
Create Pascal’s Triangle in C# and vb.net
In this article we will learn Create Pascal’s Triangle in C# and vb.net. Create Pascal’s Triangle in C# and vb.net The rows of Pascal’s triangle are conventionally enumerated starting with row n=0 at the top (the 0th row). The entries in each row are numbered from the left beginning with k=0 and are usually staggered relative to the numbers in…