Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#

Creating an AJAX enabled drag and drop custom control using Scriptaculous

Rate me:
Please Sign up or sign in to vote.
1.91/5 (5 votes)
25 Jun 2007CPOL1 min read 30.8K   144   12  
A drag and drop custom control.
using System;
using System.Collections.Generic;
using System.Text;

namespace CJO.Core.Controls
{
    public class SortOrderChangedEventArgs : EventArgs
    {
        private string iRawResponse;

        public string RawResponse
        {
            get
            {
                return iRawResponse;
            }
            set
            {
                iRawResponse = value;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Web Developer
United Kingdom United Kingdom
More about me at: www.clearlime.com

Comments and Discussions