Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi!

I'm developing a WebApp in ASP.NET C# 4.0, but I got stuck with one feature I need to add.

Let's say I've something like this:
C#
<asp:ListView runat="server" ID="ListView1">
  <LayoutTemplate>
    <div>
      <div  runat="server" id="itemPlaceHolder"></div>
    </div>
  </LayoutTemplate>
  <ItemTemplate>
    <img src='<%#Eval("ImageUrl") %>' alt="" />
  </ItemTemplate>
</asp:ListView>
<asp:Image ID="Image1" runat="server" ClientIDMode="Static" Width="120" Height="120" />

And I'd like to activate Drag and Drop between one image inside ListView and "Image1" control.

Any ideas how can I accomplish that?
Thanks!
Posted
Updated 27-Mar-13 22:26pm
v2
Comments
Naz_Firdouse 28-Mar-13 8:57am    
did u tried using JQuery's droppable() ....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900