Delete from grid view

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kaluvml
    New Member
    • Apr 2010
    • 2

    Delete from grid view

    Dear all ,

    i am using visual studio.net for programming.

    i want to delete an item from a gridview

    please help
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    GridViews are bound to a Data Source.

    The Data Source contains all the data...the only thing the GridView does is let you display the data and gives you some help to let you do things like edit/delete etc.

    If you want to delete an item from the GridView then you have to delete that item from the data source that the GridView is bound to.

    What have you tried so far?

    -Frinny

    Comment

    Working...