I am trying to post data to a database using the repeater control,<BR>but unlike the datalist, it has no updatecommand, so I am attempting to use the onclick event. While I did get it to submit a value enclosed in quotes, I havent' succeeded in getting it to submit FORM DATA.<BR><BR>VICSOUS CIRCLE of Errors: Item is not a member of EventArgs and onclick is not a member of DataListCommandEventArgs.<BR><BR>Here is the code from the onclick sub:<BR><BR> Sub Update_Click( s As Object, e As EventArgs ) <BR> Dim myConnection As SQLConnection<BR> Dim myCommand As SQLCommand<BR> Dim sqlString As String<BR> <BR> myConnection = New SqlConnection( "Server=server;uid=sa;pwd=pwd;Database=db" )<BR> sqlString = "Update TwoThousandDescriptions Set approved='yes' where primarykey='7'"<BR> myCommand = New SQLCommand( sqlString, myConnection )<BR> <BR> <BR> ' myCommand.Parameters.add( New SQLParameter( "@approved", SqlDbType.VarChar, 40 ))<BR> ' myCommand.Parameters( "@approved" ).Value =http://aspmessageboard.com/archive/index.php/"yes"<BR> <BR> <BR> <BR> ' myCommand.Parameters.Add( New SQLParameter( "@approved", SqlDbType.VarChar, 40 ))<BR> ' myCommand.Parameters( "@approved" ).Value = cTYPE( e.Item.FindControl( "approved" ), textBox ).Text<BR> <BR> <BR> <BR> myConnection.Open()<BR> <BR> myCommand.ExecuteNonQuery<BR> <BR> myrepeater.DataBind()<BR> myConnection.Close()<BR> ' BindData<BR> End Sub<BR>