Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What is wrong in this code ?
Message
 
To
All
General information
Forum:
Internet
Category:
Active Server Page
Title:
What is wrong in this code ?
Miscellaneous
Thread ID:
00561454
Message ID:
00561454
Views:
52
Hi All,

I am getting an error with the following code, can any one advice me what is wrong in this code, the error I get on line "rstGuestBook.AddNew"
the aim of this code is, will add a new record to my GuestBook.mdb File.

this is the code:

Set myConn = Server.CreateObject("ADODB.Connection")
myConn.Open "2bs-GuestBook"
mySql = "SELECT * FROM GuestBook"
Set rstGuestBook = myConn.Execute(mySql)

rstGuestBook.AddNew

rstGuestBook("Nmae") = Request.Form("txtName")
rstGuestBook("Email") = Request.Form("txtEmail")
rstGuestBook("Company") = Request.Form("txtCompany")
rstGuestBook("Url") = Request.Form("txtUrl")
rstGuestBook("Comment") = Request.Form("txtComment")

rstGuestBook.Update

rstGuestBook.Close
Set rstGuestBook = Nothing

myConn.Close
Set myConn = Nothing

Response.Redirect("guest_book_Thanks.html")


BR
<><><><><><><><><><><><><><><><><><><><>
<><> REMEMBER,,,,KNOWLEDGE IS POWER <><>
<><><><><><><><><><><><><><><><><><><><>
Next
Reply
Map
View

Click here to load this message in the networking platform