Include AJAX in existing web

  • Thread starter Thread starter Igor
  • Start date Start date
I

Igor

I just instaled AJAX framework. I can use it if I chose AJAX enabled
aplication when I am creating new project.
But I have some web aplication with no AJAX and I need to include it. It is
not project, it is asp.net website. There is no .sln file or other visual
studio project files. I started this web by chosing "New web site", not "New
project". How can I include AJAX into this web?

Thanks
 
Hi,
If you'd like to upgrade an existing Website and add ASP.NET AJAX
functionality into it you'll need to ensure that you manually update your
site's web.config file with the proper entries. The easiest way to do this is
to create a new ASP.NET AJAX-Enabled Website (as mentioned earlier) and then
copy the AJAX-specific portions of web.config to your original web.config
file. You'll of course need to ensure that the ASP.NET AJAX Extensions are
also installed on your production server before deploying the updated site.
Find more info in below links
http://hknetug.com/blogs/dotnet_hac...-asp-net-2-0-web-site-or-web-application.aspx

http://www.simple-talk.com/dotnet/asp.net/enhance-your-website-with-asp.net-ajax-extensions/
 
Back
Top