Generate Qr Code in simple Way with C#/DotNet
In this blog, there is only a single link that, given the width and height, generates a QR code.
As showen below.
var Qr=string.Format("http://chart.apis.google.com/chart?cht=qr&chs={1}x{2}&chl={0}",input_text,width,height);
By using Above link we will get Qr code png as response.
Thank you.