Install
binaries
- Install the latest
ASP.NET AJAX Extensions
1.0 package
- Unpack the AJAX Control
Toolkit into a folder on your computer
Configure Visual Studio 2005 or Visual
Web Developer
- Create a new
web site from the ASP.NET AJAX web site template by opening the "File"
menu, clicking "New", "Web Site...", and picking "ASP.NET AJAX Web
Site" under "My Templates"
- Right-click on the
Toolbox and select "Add Tab", and add a tab called "AJAX Control
Toolkit"
- Inside that tab, right-click on the
Toolbox and select "Choose Items..."
- When the
"Choose Toolbox Items" dialog appears, click the "Browse..." button.
Navigate to the folder where you installed the ASP.NET AJAX Control
Toolkit package. You will find a folder called "SampleWebSite", and
under that another folder called "bin". Inside that folder, select
"AjaxControlToolkit.dll" and click OK. Click OK again to close the
Choose Items Dialog.
- You can now use the included
sample controls in your web sites!
Note 1 : Add 3 dll to your
reference from "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX
Extensions\v1.0.61025". And set it's "Copy Local" property to "True".
These operation provide you to add related dll to bin directory instead
of using GAC. Havent you seen "Copy Local" property
? May be you do not know "Web Application Project". Web Application
Project Model is a new web project option for Visual Studio 2005 that
provides the same conceptual web project approach as VS 2003 (a project
file based structure where all code in the project is compiled into a
single assembly) but with all the new features of VS 2005 (refactoring,
class diagrams, test development, generics, etc) and ASP.NET 2.0
(master pages, data controls, membership/login, role management, Web
Parts, personalization, site navigation, themes,
etc).
Note 2
: You should have these record at
web.config <system.web> <httpHandlers>
<add verb="GET,HEAD" path="ScriptResource.axd"
type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions,
Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
validate="false"/>
</httpHandlers>
Keywords :
AJAX
Control Toolkit setup, AJAXExtensionsToolbox.dll, System.Web.Extensions.Design.dll, System.Web.Extensions.dll
|