ASP .Net drag and drop features

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is drag and drop feature available in ASP .Net? I am developing a webpage
which requires a system administration function. Users in the admin group
have to drag user icon to a group icon and assign them with the permission in
the group. Is it possible to display both users and groups in treeview style
in ASP .Net? If not, please suggest alternatives for me to accomplish the
task. Thanx
 
scissorhand said:
Is drag and drop feature available in ASP .Net? I am developing a webpage
which requires a system administration function. Users in the admin group
have to drag user icon to a group icon and assign them with the permission
in
the group. Is it possible to display both users and groups in treeview
style
in ASP .Net? If not, please suggest alternatives for me to accomplish the
task. Thanx

I presume you understand that an ASP.NET application is a web application
and that it just produces HTML which gets sent to the client's browser?

Then the question becomes, how can you create an HTML page that can handle
drag and drop. Once you know that, you can then try to get ASP.NET to
generate that page for you.


John Saunders
 
Back
Top