Skip to main content

Bootstrap

Bootstrap 3
Bootstrap is a combine framework of  HTML, CSS, and JavaScript for developing web sites. Bootstrap is completely free to download and use ! Basically Bootstrap is a Front-end framework. by using bootstrap we can make a responsive website with out much coding.

1. Bootstrap Date Picker  in asp.net !
3. Bootstrap Delete Confirmation with popup in ASP.net !
3. Material Design Login Page !

Comments

Popular posts from this blog

How to get Reverse Of a number in C# ?

Reverse of a positive integer integer  number in c#  Program : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Reverse {     class Program     {         static void Main( string [] args)         {             int num, rem, rev = 0;             Console .WriteLine( "//How to get Reverse of a number in c# ?" );             Console .WriteLine( "Enter A number :" );             num = Convert .ToInt32( Console .ReadLine());             if (num > 0)     ...

How to find sum of the digits of a number in c#?

Sum of the Digits of a number Program: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main( string [] args)         {             int num, sum = 0;             Console .WriteLine( "Enter a number :\n" );             num = Convert .ToInt32( Console .ReadLine());             if (num > 0)             {                 for ( int temp = num; tem...

What is Ref and out parameters in c# ?

About Ref and out parameters in c#! Introduction : ref : we can pass an argument as a referance with this keyword. If any changes happen in the methos then the value will be reflected in the calling method. The value of the ref variable mustbe initalized befour calling the methos. Static keyword we have to use in the method. Syntex: public static return_type method_name(ref variable_name) { // body of the method } out : The functionality of out key word is also same like ref but here we can pass an argument without initalized the value. Here also static key word have to use. Syntex: public static return_type method_name(out variable_name) { // body of the method } Example : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace codePractice {          class Program         {              static voi...