Would AJAX be the best solution?

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

I have a music list that is maintained by a DJ (artist, song, genre) in a
SQL Express db.

I want a user to be able to drag one or more songs from the "master" list to
a "playlist" and reorder them easily.

They can either save or email the playlist.

For smoothness of interactivity I was thinking AJAX.

I'm just getting into AJAX. Any suggestions on controls to use or research?

Thanks!
 
I have a music list that is maintained by a DJ (artist, song, genre) in a
SQL Express db.

I want a user to be able to drag one or more songs from the "master" list to
a "playlist" and reorder them easily.

They can either save or email the playlist.

For smoothness of interactivity I was thinking AJAX.

I'm just getting into AJAX. Any suggestions on controls to use or research?

Thanks!

Hi,

Since you are already in asp.net so ajax is perhaps the best way to do
that...
you can skip any ajax framework and implement all your required
functionality using javascript and then use asynchronous javascript
calls (ajax) to save the suff...
Asp.net 2.0 have a interface to do that... called ICallBack
interface...

But i would suggest that you do use some kind of ajax framwork...
perhaps asp.net ajax 1.0...

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
 
Hello VB,

Yep, AJAX is good approach for this

See there http://www.wintellect.com/cs/blogs/jprosise/archive/2007/02/20/drag-drop-in-asp-net-ajax.aspx

how to implement drag and drop feature

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

VP> I have a music list that is maintained by a DJ (artist, song, genre)
VP> in a SQL Express db.
VP>
VP> I want a user to be able to drag one or more songs from the "master"
VP> list to a "playlist" and reorder them easily.
VP>
VP> They can either save or email the playlist.
VP>
VP> For smoothness of interactivity I was thinking AJAX.
VP>
VP> I'm just getting into AJAX. Any suggestions on controls to use or
VP> research?
VP>
VP> Thanks!
VP>
 
Back
Top