<%@ LANGUAGE="JavaScript"%> Validation ASP

Validation ASP

<% // Check the entered password against the hard coded password name = Request("username"); value = Request("password"); var pass = new String(value); if (pass == "Qwerty123") Response.Write ("

Welcome to my world "+ name + "

"); else Response.Write ("

Sorry, "+ name + "! You entered the wrong password

"); %>