Grid Add Mode

EmployeeIDLastNameFirstNameTitle
1 Hello226 5 Sales Representative 2
2 Micheala Darle Vice President, Sales
3 Leverling Jane Sales Representative
4 Peacock Margaret Sales Representative
5 Buchanan Steven Sales Manager

bottom next goreload goadd

[1 - 5 : 17]

Add Record
LastName
FirstName

Apply add Reset addcopy normaladdcancel

Advanced Display - Grid-Add Mode
Sub Page_Load(Src As Object, E As EventArgs)
  Dim Mydb As New Tornado.z
  With Mydb
    .dbQP = "U=6| S=USA| D=nwind| th=Ti=Grid Add Mode| bm=employees;0| Ni=b5,Add| Gdf=0,1,2,3"
    .dbMode = "Ty=Grid| AddStart=true"
    .dbEditAddFlds = "LastName, FirstName"
    .dbSQL = "SELECT * From Employees"
    .ASPdbNET()
  End With
End Sub