views:

119

answers:

2

Hey,

I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy an AJAX-Enabled Web Site. but for me I can't found this option (I'm using Visual Studio 2008).

Even if I installed the Ajax Control Toolkit it still not working for me !!

What must I do to find this ?

+2  A: 

Even if you can't find the template, you can still do everything the training kit needs.

The only difference between an ASP.NET web project and an AJAX-enabled ASP.NET web project is that it takes care of a few pre-requisites for you:

1) It adds a reference to the Ajax control toolkit. You can do this manually by right-clicking on your project in the Solution Explorer, choosing "Add Reference", and navigating to the AjaxControlToolkit DLL (or find it in under the .NET tab, if you've added it to the GAC).

2) It adds a ScriptManager control to your aspx page. It comes with the Ajax Control Toolkit. The ScriptManager is required to use any of the AJAX Control Toolkit controls. Add it to the top of your page.

If you take care of those two things, you should be good to go - it's the same thing as using the Ajax-enabled website template.

Nate Dudek
I thought the toolkit needed some web.config entries as well...
Tommy
In .NET 3.5 and below, yes. They get added automatically though.
Nate Dudek
A: 

I have an issue in 2nd step. As i am using update panel and there is already a ScriptManager in master page, so I am using ScriptManagerProxy in updatepanel.

So when i start adding "ToolkitScriptManager" it shows error "Two scriptmanager" instances are not possible in one page...

Manish Jain

Manish Jain