Help... trying to create a new row in MDB from a Web From

Adam

Freshman
Joined
Dec 23, 2003
Messages
41
Location
SC
Pretty easy and straight foward from a normal Windows Form, but when I apply the same syntax in a web form I get:

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.



Visual Basic:
        Dim rowIndex As Integer
        Dim tblJob As DataTable
        Dim NuRow As DataRow


        NuRow = tblJob.NewRow()   <--- Here
 
Back
Top