Display QR Code Generated Name,Link in MVC C#
I Already mentioned How to Create QR Code Generation in MVC . Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Gma.QrCodeNet.Encoding; using Gma.QrCodeNet.Encoding.Windows.Render; using System.Data; using System.IO; using System.Drawing; using System.Drawing.Imaging; namespace QRPrint.Controllers { public class QRControlController : Controller { string filepath = HttpRuntime .AppDomainAppPath; [ HttpGet ] public ActionResult Display( String txt= "" ) { // try //{ ...