user441222
user441222

Reputation: 2001

Drag and drop controls at runtime in ASP.NET

We have requirement in our application to create template pages at run time. For this we need to have a feature like form designer in ASP.NET to be built. Facility to drag the controls from toolbox and drop in the form at runtime should be made available to the user. Solution should be in pure ASP.NET. Silverlight is not being used in the application. Please suggest a best way to achieve this requirement.

Upvotes: 0

Views: 3451

Answers (1)

Vivek A S
Vivek A S

Reputation: 11

Enable draggable functionality on any DOM element. Move the draggable object by clicking on it with the mouse and dragging it anywhere within the viewport.

http://jqueryui.com/draggable/

Upvotes: 1

Related Questions