This is the HTML code I wrote (ADDclient.HTML, wwwroot/project)
<html dir="rtl">
<head>
<title>ãó 1</title>
</head>
<body>
<form action="http://127.0.0.1/project/ADDclient.asp" method="post" name="frm1">
Insert Client ID
<input type="text" name="ClientID">
<br>
Insert User Name
<input type="text" name="UserName">
<br>
Insert Email
<input type="text" name="Email">
<br>
Insert Password
<input type="password" name="Password">
<br>
Send
<input type="submit" value="ùìç">
</form>
</body>
</html>
This is the ASP code I wrote (ADDclient.ASP, wwwroot/project)
<html dir="rtl">
<head>
<title>ãó 2</title>
</head>
<body>
<%
Set connection=Server.CreateObject("ADODB.Connection")
stconnection="Provider=Microsoft.Jet.OLEDB.4.0;Dat a Source=" &_
Server.MapPath("/project/db/clnew.mdb")
connection.open stconnection
ClientID=request.form("ClientID")
UserName=request.form("UserName")
Email=request.form("Email")
Password=request.form("Password")
SQLstring="Insert into Client values(" & clientID & ",'" & UserName & "','" & Email & "','" & Password & "')"
connection.Execute(SQLstring)
connection.Close
Set connection=nothing
%>
You succeeded registering
<br/><br/>
<button onclick="document.location='ADDclient.html';">çæ øä ìèåôñ</button>
</body>
</html>
This is the ACCESS file (wwwtoot/project/db)
http://rapidshare.com/files/20966509/CLNEW.mdb.html
When i try to register a client it gives me this erorr:
Microsoft JET Database Engine (0x80040E10)
No value given for one or more required parameters.
/project/ADDclient.asp, line 19
What is wrong?