<%
str = Request("str") //str 이라는 것을 받아서
If not str = "" Then //비어 있지 않으면
result = Replace(str,"a","aad") //a를 aad로 바꿔넣고
result = Replace(result,"i","in") //i를 in으로 바꿔넣고
result1 = Mid(result,2,2) // result의 2번째 글자부터 2글자 추출해 result1에 넣기
result2 = Mid(result,4,6) // result의 4번째 글자부터 6글자 추출해 result2에 넣기
result = result1 & result2 //result1 과 2를 합치기
Response.write result // result 넣기
If result = "admin" Then //result가 admin 이면???????
pw = "????????"
End if
End if
%>