Results 1 to 4 of 4

Thread: Example Method for Drag and Drop in ASP.NET

  1. #1
    Join Date
    May 2009
    Posts
    9

    Example Method for Drag and Drop in ASP.NET

    Hello everyone, Hello, I want to learn the drag and drop implemention in Asp.net I trying to make drag and drop on asp.net but cannot Do so , I wanted to develop an application that should allow you classify photos via a drag and drop in ASP.NET. ,So Can you Tell me what tools should i used and what method should i use to implement to drag and Drop in Asp.net , please Help me Thanks in advance

  2. #2
    Join Date
    May 2008
    Posts
    3,516

    Re: Example Method for Drag and Drop in ASP.NET

    Try with Javascript instead

    <html>
    <head>

    <script type="text/javascript">

    //------------------------------------------------ ----------
    / /
    / / Function drag & drop
    / /
    //------------------------------------------------ ----------
    var drag;
    var resizing;
    var dragfromdive;
    var controlx;
    var controly;


    drag function (object) (
    dragfromdive = document.getElementById (object);
    controlx = event.x + document.body.scrollLeft - dragfromdive.offsetLeft;
    controly = event.y + document.body.scrollTop - dragfromdive.offsetTop;
    dragfromdive.style.zIndex = 1999;
    drag = true

    function drop () (
    if (drag == true)
    (
    dragfromdive.style.zIndex = 0;
    drag = false;
    dragfromdive = "";
    offset = 0;
    )
    )

    function move ()
    (If (drag == true)
    (
    dragfromdive.style.left = (event.x + document.body.scrollLeft) - controlx;
    dragfromdive.style.top = (document.body.scrollTop + event.y) - controly;
    )
    )

    </ script>

    </ head>
    <body onmouseup="drop()" onmousemove="move()">

    <div id="divtest01" onmousedown="drag('divtest01')" style="position:absolute;">
    <table bgcolor="red" width=45px height=45px>
    <tr> <td> </ td> </ tr>
    </ table>
    </ div>
    </ body>
    </ html>

  3. #3
    Join Date
    Apr 2008
    Posts
    3,339

    Re: Example Method for Drag and Drop in ASP.NET

    Most of the JavaScript has been bundled into a reusable package called the ToolMan DHTML Library which you can download and use for free.

  4. #4
    Join Date
    Nov 2005
    Posts
    1,323

    Re: Example Method for Drag and Drop in ASP.NET

    AJAX has revolutionized Web user interfaces, and ASP.NET AJAX has made AJAX available to the Visual Studio users. It comes in three separate downloads: ASP.NET AJAX Extensions (asp.net/ajax/downloads), which provides the core, fully tested set of AJAX functionality; ASP.NET AJAX Futures (asp.net/downloads/futures), which contains experimental features on which the product group wants feedback; and the ASP.NET AJAX Control Toolkit (asp.net/ajax/ajaxcontroltoolkit/samples), which provides a grab bag of AJAX controls as well as an SDK for building controls of your own.

    check this link form more information

Similar Threads

  1. Drag an drop on htc hd2 home screen
    By Sindu in forum Portable Devices
    Replies: 5
    Last Post: 09-06-2010, 06:35 AM
  2. Drag and drop transcoding in windows 7
    By Susquehannock in forum Windows Software
    Replies: 6
    Last Post: 04-06-2010, 12:30 AM
  3. What happens when you drag and drop a file on top of a vbscript
    By Dharmavira in forum Software Development
    Replies: 2
    Last Post: 01-06-2009, 10:00 PM
  4. Drag & Drop PictureBox
    By Suzane in forum Software Development
    Replies: 2
    Last Post: 01-05-2009, 01:48 PM
  5. CMD drag and drop in Windows 7
    By Justvicks in forum Operating Systems
    Replies: 2
    Last Post: 20-03-2009, 06:36 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,726,668.70429 seconds with 17 queries