tags:

views:

88

answers:

2

I am trying to extend the Reorderlist contorl in ASP.Net 3.5, however I cannot find which namespace I need to import in order to inherit form the original control (System.Web.UI.WebControls does not appear to be it).

In ASP 2, I know it came as part of the AjaxToolKit, but I am specifically looking for the version rolled into 3.5.

Any ideas?

A: 

shouldn't it be in the AjaxControlKit namespace (it was in asp2 at least)

devio
+1  A: 

Although the asp.net AJAX framework was rolled into 3.5, the control toolkit was not. You'll still need to download / add a reference to the ASP.NET Ajax Control Toolkit if you want to use the Reorderlist control.

http://www.asp.net/ajax/AjaxControlToolkit/Samples/

Evan