Dear All,
<div>My reorderlist control is attached to a database table. Below is the structure of my table. I am only dispalying the name column in the Reorderlist .
ID | NAME | Order_by |
1 | John | 1 |
2 | James | 2 |
3 | Adam | 3 |
4 | Peter | 4 |
5 | Pat | 5 |
I want to know how drag and drop will work . especially after you drop any row I want the Order_by column to be updated and saved in the database as well . I dont want to use a SqlDataSource
I know we have to do something in this method
protected void myreorder_ItemReorder(object sender, ReorderListItemReorderEventArgs e)
{
}
I would be greateful if some 1 can help me in this case
</div>