티스토리 뷰

728x90
반응형

<%

        

        string tempPassword = "";

        int temp = 0;

        

        Random r = new Random();

        for (int i = 0; i < 8; i++)

        {

            temp = r.Next(1, 4);

            if (temp == 1) { tempPassword += (char)(r.Next(97, 123)); }

            else if (temp == 2) { tempPassword += (char)(r.Next(65, 91)); }

            else if (temp == 3) { tempPassword += (char)(r.Next(48, 58)); }

        }


        Response.Write(tempPassword);

            

    %>

728x90
반응형