Form View

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nithnat
    New Member
    • Jan 2008
    • 1

    Form View

    how to bind data to form view in asp.net 2.0(not through wizard)
  • jawaharks
    New Member
    • Jan 2008
    • 12

    #2
    Form View
    how to bind data to form view in asp.net 2.0(not through wizard)
    There is a property called InsertItem in formview. In the cs page
    give

    FormView1.Inser tItem(true);

    Now you can insert. I basically connect using tableadapters-->Datasource-->Formview

    Comment

    Working...