Salve, volevo realizzare una pagina asp che prendesse dei dati da un form di una pagina html e semplicemente li stampasse a video.
Quello che succede però è che la pagina asp che riceve i dati viene visualizzata sul browser come se fosse un file di testo, ovvero compare tutto quello che c'è all'interno del file asp.
Potreste dirmi dove sbaglio?

posto il banalissimo codice

html:
codice:
<html> 
   <head></head> 
<body>
    <table bgcolor="blue"> <tr> <td> 
      <FORM ACTION="provaForm.asp" METHOD="get">             
         <FIELDSET> 
            <LEGEND align="center"> Area Riservata </LEGEND>
            <table border="0"> 
             <tr> 
              <td>
                 User   name
              </td>
              <td><INPUT type="text" name="User" size="20"></td>
            </tr>      
            <tr> 
              <td>Password</td>
              <td>
                   <INPUT type="password" name="pwd" size="20">
              </td>
            </tr> 
            <tr>
             <td>
                  <INPUT type=submit value="Accedi" name="access">
             </td>
             </tr>
           </table> 
          </FIELDSET> 
         </FORM> 
        </td>
       </tr>
      </table>
     </body>
    </html>
asp:
codice:
<%@ language="VBSCRIPT" %> 
<% User=Request.Form("User") pwd=Request.Form("pwd") %>
 <html> 
   <body> <h1><% Response.Write"ciao" %></h1> 
   </body> 
</html>