CloudFlare is a Content Delivery Network (CDN) that increases the loading speed time of your website. It also provides excellent security against attacks from hackers and viruses.
CloudFlare has 79 Data Centers distributed globally. These Data Centers store your website's static contents like Images, Scripts & CSS. They provide your visitors, your website's content, at high speed.
CloudFlare also acts as a protective shield and blocks hacking attacks made to your website.
(more…)
This article will answer the question about 'What is CDN?'. A CDN (Content Delivery Network) is a great way to speed up your website with high availability and performance.
It is a system consisting of a number of servers distributed around the globe. All these servers contain cached static content of your website. Whenever a user visits your website, the server nearest to the user, (which is based on the geographical location of the user), will provide him your website's static content.
The static content of a website includes – CSS files, JavaScript and Images.
(more…)
A Website owner should know How to Transfer his Domain from one Registrar to another. It helps him to switch to a better host whenever there is a need. Domain Name Transfer can be done by anyone without needing any technical skills.
(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…)
In this tutorial I will explain you how to use Twilio to send SMS using C# and ASP.NET. You can send SMS to any phone number and anywhere in the world. Let us first introduce you to Twilio.
Twilio allows making and receiving phone calls and also sending and receiving text messages, using its APIs. Programmers can implement Twilio APIs in their code and create all sort of applications involving phone calls and SMS. It's services are accessed over HTTP and are billed based on usage. It can be used easily in our application for creating features like SMS authentication, OTP, SMS marketing and more.
(more…)
Sometimes in SQL Server when attempting to restore a database on server A (whose backup is taken on server B) fails due to servers A and B using different versions of SQL server. In such a situation restoring database is done by generating database scripts of both schema and data.
(more…)
In this Tutorial I will show how to fetch data from database using Custom Paging and show it inside an HTML table. Yes I will "not" use GridView and Repeater to show the data, instead my HTML table will do this work.
The HTML table will itself look like a Grid and will also have pagination links. Here I will bind data from Northwind Products Table.
(more…)
ASP.NET GridView now supports custom paging too. By using Custom Paging your GridView will never slow down as it only fetches the records needed for the current page only. The GridView Custom Paging supports the developers to make their application much faster and light weight too.
(more…)
Huge data with paging always causes big headaches to developers. It not only slows down the performance of the application but also takes up lot of resources of the server.
But fortunately you can use the technique of custom paging in your SQL server stored procedure that make your application faster and better.
(more…)