Is there a .NET API that generates QR Codes such as this one?
I’d like to display these on pages that I expect my users to print out.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I wrote a basic HTML helper method to emit the correct
<img>tag to take advantage of Google’s API. So, on your page (assuming ASPX view engine) use something like this:Or if you want to specify the size in pixels (the image is always square):
Here is the code: