Hary
Hary

Reputation: 5818

Drag and Drop in ASP.NET without javascript

Is it possible to Drag and Drop Listitems from 1 DropDownlist to another DropDownlist with pure ASP.NET and C# without using javascript ?

Upvotes: 1

Views: 778

Answers (2)

user596075
user596075

Reputation:

That is client-side behavior. ASP.NET is server-side technology. So no, it is not possible without JavaScript.

Upvotes: 2

Darin Dimitrov
Darin Dimitrov

Reputation: 1039398

No, this is not possible without javascript.

Upvotes: 6

Related Questions