RECORDSET

  • Thread starter Thread starter NAIME ESTEVES
  • Start date Start date
N

NAIME ESTEVES

I am trying to make a data base for a ASP website. But
when I try to write the code DataSet11.Recordset.Addnew.
Appears error when I compile to test the data base.

I hope to receive help.
 
Are you talking about ASP or ASP.NET?
This group is for ASP.NET

For ASP 3.0 questions try this newsgroup:
microsoft.public.inetserver.asp.general

If you're talking about ASP.NET, recordsets aren't used any more with
ADO.NET.
 
i guess you have a wrong code here.

the dataset does not have Recordset object, if you are trying to add a new
row in a dataset, please use the code below:

Dim drNew as DataRow = ds.Tables(0).Rows.AddNew()
drNew(0) = "..."
ds.Tables(0).Rows.Add(drNew)
 
I already solve the problem, but now I have another problem, when I
launch the ASP Application it's not appear the field I already design on
the webform.

Can you help me??

Thank in advance

Naime
 
Back
Top