anyway, you can save the page as .asp
and write this code to save to database.
Dim Conn, DSN
DSN = "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" & Server.MapPath("./database.mdb")
set Conn = Server.CreateObject ("ADODB.connection")
Conn.Open DSN
Dim RS, SQL
Set RS = Server.CreateObject("ADODB.Recordset")
SQL = "SELECT * FROM TableName"
RS.CursorType = 2
RS.LockType = 3
RS.Open SQL, Conn
RS.AddNew
RS.Fields("Name") = Request.Form("Name")
RS.Fields("Email") = Request.Form("Email")
RS.Update
RS.Close
Set RS = Nothing
something like this will work