Ask a Question related to ASP, Design and Development.
-
Poppy #1
Update method
I use the following to update:
Dim rsEdit1
Set rsEdit1 = Server.CreateObject("ADODB.Recordset")
rsEdit1.ActiveConnection = MM_shop_STRING
rsEdit1.Source = "SELECT * FROM products WHERE pautoid = 12"
rsEdit1.CursorType = 2
rsEdit1.LockType = 3
rsEdit1.Open()
rsEdit1.("authorMemo") = "TEST" *Error message from this line
rsEdit1.update
rsEdit1.Close()
Set rsEdit1 = Nothing
The problem is that I keep getting the following error message :
"Microsoft VBScript compilation (0x800A03F2) Expected identifier"
Can anyone help ?
Poppy Guest
-
Is creationComplete=method() or initialize=method() theright solution for such kind of problem or ...?
Hi everybody, I am using web service in my flex application and I want to visualize some data from collection of objects taht I receive from my Web... -
Preferred method of doing an update within Asp using Access
I was wondering what is the best method of accomplishing an update within Asp using Access? I was going to going to use the update method of an ado... -
method name exists, property value exists, calling method fails
I have a class object I am calling in another class: class Stuff { var $myObj; function Stuff($myObj) { $this->myObj = $myObj; } -
Update method error
I use the following to update: Dim rsEdit1 Set rsEdit1 = Server.CreateObject("ADODB.Recordset") rsEdit1.ActiveConnection = MM_shop_STRING... -
update problem in DataGrid's UpdateCommand method
Hi, anyone can help me to solve this little problem that i've spent a lot of time to solve it!! but i can't!!!! actually, i use a DataGrid, and... -
Ken Schaefer #2
Re: Update method
Please post to one newsgroup onlye
Answered in asp.db
Cheers
Ken
"Poppy" <paul.diamond@NOSPAMthemedialounge.com> wrote in message
news:OXoL8CImDHA.684@TK2MSFTNGP09.phx.gbl...
: I use the following to update:
:
: Dim rsEdit1
: Set rsEdit1 = Server.CreateObject("ADODB.Recordset")
: rsEdit1.ActiveConnection = MM_shop_STRING
: rsEdit1.Source = "SELECT * FROM products WHERE pautoid = 12"
: rsEdit1.CursorType = 2
: rsEdit1.LockType = 3
: rsEdit1.Open()
:
: rsEdit1.("authorMemo") = "TEST" *Error message from this line
: rsEdit1.update
:
: rsEdit1.Close()
: Set rsEdit1 = Nothing
:
: The problem is that I keep getting the following error message :
:
: "Microsoft VBScript compilation (0x800A03F2) Expected identifier"
:
: Can anyone help ?
:
:
Ken Schaefer Guest



Reply With Quote

