📄 imagepage.aspx.cs
字号:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class CommPages_ImagePage : ImagePage
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
string keycodes = "ABCEFGHKLMNPQRSTYZ123456789";
Random r = new Random();
string key = string.Empty;
for (int i = 0; i < 5; i++)
{
key += keycodes.Substring(r.Next(keycodes.Length), 1);
}
DrawImage(5, key );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -