The DragPanel extender allows users to easily add "draggability" to their controls. The DragPanel targets any ASP.NET panel,
and takes an additional parameter that signifies the control to use as the "drag handle". Once initialized, the user can then freely drag the
panel around the web page by using the drag handle.
The control above is initialized with this code:
<ajaxToolkit:DragPanelExtender ID="DPE1" runat="server"
TargetControlID="Panel3"
DragHandleID="Panel4" />
- TargetControlID - The panel that is to be draggable
- DragHandleID - The ID of a control that will serve as the "drag
handle" panel. When the user clicks and drags this control, the panel will
move.