I have the following code:
connection.Open()
Dim command As SqlCommand = New SqlCommand("GetHomepageInf
o", connection)
command.CommandType = CommandType.StoredProcedur
e
Dim adapter As SqlDataAdapter = New SqlDataAdapter(command)
adapter.Fill(infoDS)
<-------------------------
----------
----------
----WHAT DO I PUT HERE????
HT_Repeater.DataSource = HTDS.Tables(0)
HT_Repeater.DataBind()
connection.close()
I want to copy infoDS.Tables(0) over to HTDS.Tables(0). Then I want to delete HTDS.Tables(0).Rows(0).
Start Free Trial