Mostafa
Mostafa

Reputation: 682

How create QR Code with c# that saves information such as a person name with his website and phone number and alot more information

I need a C# code in my ASP.NET MVC project to generate a QR Code as my company's logo that this QR Code must have company's information such as company name, website, phone number and much more information about that. This QR Code must have a complex type information and while someone read this with QR Code Reader then it must shows him all of this information and then if this person click on the phone number then this number must be dialed or when he clicked on the URL then he must go to company's website. Any help will be appriciated!

Upvotes: 0

Views: 2735

Answers (1)

Dominik
Dominik

Reputation: 3372

A QR code is simply a container for whatever you want to store. Given your description you want to encode a vCard in the QR code. Most modern devices will be able to decode that information and add it to their contact database. Check this answer Generate QR code from .vcf card / Business card in C# Windows phone 8.1 I think this will help you.

Upvotes: 2

Related Questions