Sunday, March 31, 2019

Azure Storage Account Part 1 & 2 Codeproject

Kindly follow the below Codeproject links for more details. Azure Storage Account Part 1: What is Blob? Azure Storage Account Part 2: Upload Files in Blob Storage using C# ...

Thursday, March 28, 2019

Delete Duplicate Rows in SQL Server using Common Table Expression

Introduction: Sometimes, some duplicate data may be inserted in the SQL table. But it's harmful to you and your application too. So how do you remove the duplicate rows in your table? Description Take a look at the following table content. It has duplicate rows. IdNameDepartment 1Arka.NET 2Ashok.NET 3AnubhavPHP 4Arka.NET 5SudeshnaGraphics Row 1 and 4 are duplicates. So we have to remove...

Friday, July 20, 2018

Deploy your site to Azure App service from Visual Studio

Building your website and publishing it i Azure app service is simpler than publishing the site into a remote machine. There are several methods through which you can publish your site into Azure. Import publisher file: This is one of the easiest way t publish your site in Azure app service. First...

Thursday, July 20, 2017

Desktop notification in browser using JavaScript

In most of the sites have today their own desktop notification system to connect user in a large scale. So how to create a desktop notification for your site. Its very simple to generate a new notification using JavaScript, you have to write hardly 2-3 lines of code. Lets create one to generate desktop notification. To create a new notification for user you have to follow three steps....

Tuesday, April 11, 2017

Installing TypeScript in Visual Studio

In this first tutorial of TypeScript we will get to know how to install TypeScript in Visual Studio and use it in the same. Starting from the scratch Microsoft provides different extension for TypeScript for different versions of Visual Studio. So I have Visual Studio installed in my PC. So, I will...

Wednesday, February 22, 2017

How to send encrypted mail in C#

It was a request of one of my client to send the mail as encrypted so that this kept secure while sending to customers. So after a search I found Jason Niver's code to be very handy to use. So I am sharing this will all so next time it becomes little bit easy to get.   using System; using System.Text; using System.Net.Mail; using System.IO; using System.Security.Cryptography.Pkcs; using System.Security.Cryptography.X509Certificates;   namespace...

Popular Posts

Pageviews