我必须在网格视图中实现排序,我目前正在使用ASP.NET 4.0。在搜索时,我在codeproject上找到了以下Utility,这有助于实现它。我无法触发DragAndDrop事件。我已使用using Utility;
添加了引用以及ASP.NET页面。以下是我的代码:
在ASPX页面
<cc1:DragDropGridView ID="_GridDragAndDrop" runat="server" AutoGenerateColumns="false" CssClass="ValGridForm" OnDragAndDrop="_GridDragAndDrop_DragAndDrop" >
<Columns>
.
.
.
</Columns>
<EmptyDataRowStyle CssClass="label" />
<EmptyDataTemplate>
No record Found.
</EmptyDataTemplate>
</cc1:DragDropGridView>
背后的代码
protected void _GridDragAndDrop_DragAndDrop(object sender, Utility.DragAndDropEventArgs e)
{ //Added a breakpoint here. But it does not hit here.
}
问题 拖动行时不会触发拖放事件,并将其释放到某处。页面加载,这意味着它确实发布了一个PostBack,但没有击中它应该命中的事件。我不知道我在做什么问题。