I'm pretty good with simple html and VB6, but this is the 1st time I've tried using VBScript and ASP.

I'm having trouble figuring out how to get the user inputs from a form.
Right now I'm getting a 405 error from these two pages.

Page.asp
vbcode Code:
  1. <HTML>
  2. <HEAD>
  3. </HEAD>
  4.  
  5. <BODY>
  6. <FORM METHOD="post" ACTION=”Chk.asp”>
  7.  
  8.   <INPUT TYPE="Checkbox" NAME="Check" VALUE="Check"><br>
  9.   <INPUT TYPE="Submit" NAME="Submit" VALUE="Submit">
  10.  
  11. </FORM>
  12.  
  13. </BODY>
  14. </HTML>

Chk.asp
vbcode Code:
  1. <Script Language="VBScript">
  2. <HTML>
  3. <HEAD>
  4. </HEAD>
  5.  
  6. <BODY>
  7. <%Response.Write Request.Form("Check")%>
  8. </BODY>
  9. </HTML>

What am i doing wrong?