Getting data from Sql Server using Jquery in Asp.net Web Forms

Hey Guys, I am back with another post. Today we will look how to get data from sql server database using jquery in Asp.net Web Forms Application. We will use Bootstrap for styling our web page and Web Services for getting data from the server.So, Lets get started. First we will create a table in our database.Let’s open sql server database.Create the new script and type the following code. Here, I have created tblEmployees table inside my SampleDB database. Now,Let’s go ahead and fire up visual studio and create a new project. Click on File menu >> New >> Project … Continue reading Getting data from Sql Server using Jquery in Asp.net Web Forms

Dropdown in Bootstrap 3

Hey guys. I am back with another awesome post. Today we understand how to use dropdown in Bootstrap. As a web developer must of you heard and used bootstrap. Bootstrap is a framework for developing responsive web application. It contains a bunch of css and javascript library which we used to develop awesome applications.So, lets get started with our today’s work. Creating a Dropdown Menu Here is the html code for creating a dropdown menu. Here we created a div element with bootstrap class dropdown. The main thing is to keep in mind is which item you want to trigger. … Continue reading Dropdown in Bootstrap 3

Generics in C#

Cool. Hey everyone this is my first post on my blog. Today i am going to explain a bit about the generics and its use.So, lets start with the introduction to it. Introduction Generics are the cool features introduce in C# 2.0. Generics allows programmer to design classes and methods decoupled from the data types. It means generics helps the programmer to make their classes and methods type independent. Generics are extensible used by the collection classes available in  System.Collection.Generics namespace. Features of using Generics It allows the programmer to maximize  code reuse, type safety and performance. Programmers can create … Continue reading Generics in C#