Liverpoololympia.com

Just clear tips for every day

Blog

What is an UTF-8 String?

What is an UTF-8 String? UTF-8 is an encoding system for Unicode. It can translate any Unicode character to a matching unique binary string, and can also translate the binary string back to a Unicode character. This is the meaning Read more…

How do I code a login form in C #?

How do I code a login form in C #? Here write the following code: public void button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(@”Data Source=USER;Initial Catalog=admin;Integrated Security=True”); // making connection. How do I create a login page Read more…