The jQuery Prepend method prepends the content inside of every matched element (selector) i.e. it insert the specific content as the first child of the selector.
It is exactly opposite to the jQuery Append method and is very helpful in doing DOM Manipulations.
(more…)
The jQuery Append method appends the content inside of every matched element. It is very helpful in doing DOM Manipulation.
$(selector).append( content [, content ] [, content ] [, content ]..... )(more…)
CRUD – Create Read Update Delete are the first step to learn in database programming. Entity Framework helps you can do the CRUD Operations easily in ASP.NET Web Forms. The Entity Framework (EF) makes coding simpler and faster.
In this tutorial I will teach you how to use Entity Framework (EF), I will create a Student Form which will create Student Entries (Records) in the database. Below this form I will put a GridView control, to read all the records and show them to the user.
The GridView will also help in Updating and Deleting these Student Records through the Edit and Delete icons that are provides in each of it's rows.
(more…)
CRUD Operations are the basic thing when performing database operations. You can insert a record then read, edit or delete it from the database. If you want to learn how to use Entity Framework for database operations in ASP.NET MVC website then this tutorial is going to help you a lot. So let’s start with it.
The database table where the information will be inserted is the Student table.
(more…)
In this GridView tutorial you will learn how to bind it with AJAX. Here I will "not use" controls of ASP.NET AJAX toolkit, I will just use jQuery to do the binding job. The GridView will function normally but there won’t be any page PostBack during the binding process & pagination.
In this application I am using two ASP.NET pages – first one is where this GridView will be shown while the second page is where the GridView actually resides.
(more…)
CRUD Operations stands for Create, Read, Update and Delete, these are the basic functions of any database. In this tutorial I will teach how to perform CRUD in SQL Server.
(more…)
Microsoft has created Entity Framework (short form EF) for helping developers to automate database related operations in C#, VB, C++ and other dot net based programming languages. Due to EF, developers are not needed to do the lengthy ADO.NET programming as EF takes all it's care.
Here in this tutorial I will help you to get stated with Entity Framework.
By implementing IMDB API in a website you can show the visitors all movies, actors and series information, right in our website. Here I will implement the IMDB API using jQuery AJAX method.
The first thing is to create your free IMDB API key from here.
The application is quite simple. Firstly, create an HTML page and add a text box and a button.
A user enters his search text into this text box and clicks the button. On the button click, the API call is made and the result is fetched and shown to the user.
(more…)
One of the best features of jQuery AJAX Method is to load data from external website by calling APIs, and get the response in JSON or XML formats. In this example I will show you how easy it is to make such API calls in jQuery AJAX.
The OpenWeatherMap API provides the complete weather information for any location on Earth including over 200,000 cities. This API provides the response in JSON format.
A Web Scraper is a software that helps in extracting data from websites. They can be use to extract typical information like emails, telephone numbers, addresses, etc from different URL.
I created this tutorial to teach how to create your own Web Scraper in ASP.NET MVC and jQuery. This Scraper will extract all emails and telephone numbers from a specified URL and show them in a HTML div control.
(more…)