使用QR Code图像url

这里的QRcode值是 "1234567890"

描述

C1QRCode 提供QR code图像,它会根据特定的字符串值进行编码。

用户可以通过下面的代码直接使用QRcode图像:

if (!IsPostBack)
{
	C1QRCode qrCode = new C1QRCode();
	qrCode.Text = "1234567890";

	this.Image1.ImageUrl = qrCode.ImageUrl;
}

文档