-1
Hello, I am trying to "create" a system of "captcha" for my program, but it sometimes exceeds the limit of the textbox, and in this case the user would not know what comes next, I researched a lot, but I have not found a solution, I will be leaving a little of the code below, and I thank you in advance for your help.
Random random = new Random();
tb_noRobot.MaxLength = 1;
tb_noRobot.Text = Criptography.GerarHashMd5(random.Next().ToString());
Note: "criptography" is the default method of generating the hash of values.
I couldn’t understand what you intended... nor the sense of generating a guid to display only the first character
– Leandro Angelo