Posts

Showing posts from April, 2017

Generate PDF from HTML Documents using C#

Generate PDF from HTML Documents using C# 1. Install Package : Install-package NReco.PdfGenerator 2.Write Down Code as follow : var htmlToPdf = new HtmlToPdfConverter(); var pdfbytes = htmlToPdf.GeneratePdfFromFile(" ", null); File.WriteAllBytes(" ", pdfbytes);

Create Short URL using C#

How to create Short/Tiny URL from Long URL ? - Get API Key from https://developers.google.com/url-shortener/v1/getting_started - Write Down Code snippet given below and Just replace API Key public static string getGoogleTinyURL(string url) { string key = string post = "{\"longUrl\": \"" + url + "\"}"; string shortUrl = url; HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://www.googleapis.com/urlshortener/v1/url?key=" + key); try { request.ServicePoint.Expect100Continue = false; request.Method = "POST"; request.ContentLength = post.Length; request.ContentType = "application/json"; request.Headers.Add("Cache-Control", "no-cache"); using (Stream requestStream = request.GetRequestStream())