però non mi funziona
Ho una pagina ricevo.asp che mi serve per verificare se funziona, ma mi ritorna sempre password: username: come se non avesse ricevuto alcun valore

Ricevo.asp
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Nuova pagina 1</title>
</head>

<body>

<%
username = Request.Form("username")
password = Request.Form("password")
response.write "Username: " & username
response.write "Password: " & password
%>

</body>

</html>