I know this is a newbie question, but where is the ASP.Net/Ajax tab control?
I used NuGet to install the Ajax Tool Kit. Visual Studio has ‘Ajax Extensions’ in its Toolbox, but the extensions only include ScriptManager, Timer, and UpdatePanel. I believe I’m missing the actual Ajax Controls Tab in the Toolbox.
I also appear to lack the ‘Ajax Control Toolkit Template’ for creating a new project under Visual Studio. It makes it hard to follow along with ASP.Net tutorials (such as Tab Control: http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-tabs-control).
EDIT: It appears I was missing a few pieces of the puzzle (namely, NuGet does not really install anything in a reusable manner). http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-get-started-with-the-aspnet-ajax-control-toolkit and http://weblogs.asp.net/yousefjadallah/archive/2010/04/16/installing-ajax-control-toolkit-4-in-visual-studio-2010.aspx
Jeff
I don’t know if NuGet is supposed to add controls to the toolbox as well, but you can add them manually.
Right click on the toolbox, create a new tab, right click on it and select “add items”. Then browse to toolkit dll and select it, it will add the controls to the toolbox.
EDIT: I just added a reference to the library through NuGet, and I discovered that the package reference adds this to your web config:
This means that when you start typing
In your aspx (or ascx) files, you should see the auto-completion list for controls in the toolkit.
About the dll location, click on the reference in the solution explorer and check its path in the properties window.