GitHub has the the best jQuery File Upload plugin by BlueImp. It can be downloaded from GitHub using this link.
(more…)
There is no need to use OnRowEditing & OnRowUpdating events of GridView when updating records from it as it can be easily done using jQuery. In this tutorial I will teach you how to use jQuery to do the update of records from inside the GridView itself so that there is No Page Postback.
(more…)
The GridView by default shows the data from ‘top to bottom’. If you want to show the data from left to right then you can use JavaScript to do this work. Here in this tutorial I will use JavaScript to swap the GridView’s Rows and Columns to bring 2 changes:
(more…)
When working with GridView in ASP.NET Web Forms, there are requirements to show the sum of all the columns in the footer of the GridView. Well, let me tell you don’t write lengthy C# codes in .aspx.cs for these simple things, instead you can achieve this by using only a few lines of jQuery.
(more…)
The Instant Username Availability Check feature will enable visitors to easily find out which usernames are available and which are already taken. So when they come to create their account on your website they don’t have to:
(more…)
In this Tutorial I will teach you with example how to bind a GridView with jQuery AJAX, from data which is fetched from a Database. The GridView will also have pagination and the whole thing - from binding to paging will work in asynchronous manner (without PostBack).
(more…)
Sometimes you need to provide a feature to add HTML contents in a database table's column. For creating this feature you can use CKEditor which is a free HTML Text Editor. It's integration is fairly simple and this tutorial will teach how to use CKEditor in your ASP.NET Web Forms website.
(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…)
Multiple File Upload with Progress Bar is necessary whenever any file upload is taking place in your website. It does the simultaneous uploads of files at the same time, and also shows the Real Time Upload Progress. This feature can be created in your ASP NET website using JavaScript and AJAX.
(more…)
In websites we see the feature of sending SMS to customers mobile numbers. This is done for a number of reasons like sending one time password (OTP), authentication, marketing and more. You can also add SMS sending feature in your website very easily using Plivo. which is a Global SMS & Voice calls service.
In this tutorial I will teach you how to send SMS using Plivo SMS API in your ASP.NET website. First you need to create your account in Plivo website and generate AUTH ID and AUTH TOKEN. With these 'Auth Id and Auth Token' you can communicate with Plivo API to send SMS to any desired mobile number.
(more…)