<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>redaware &#187; AJAX Control Toolkit</title>
	<atom:link href="http://www.redaware.net/tag/ajax-control-toolkit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redaware.net</link>
	<description></description>
	<lastBuildDate>Thu, 09 Sep 2010 15:06:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASP.NET: Deploying an AJAX enabled application to SharePoint</title>
		<link>http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/</link>
		<comments>http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 13:52:41 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[AJAX Control Toolkit]]></category>
		<category><![CDATA[WSS 3.0]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=32</guid>
		<description><![CDATA[You may develop a web application that uses the ASP.NET AJAX Control Toolkit (http://www.asp.net/ajax/AjaxControlToolkit/Samples), if you plan to deploy this application to a SharePoint Server, you will need to complete the following steps:Copy the AjaxControlToolkit.dll to the BIN folder of the SharePoint server. Copy the AjaxControlToolkit.dll to the BIN folder of the SharePoint server. Edit [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">You may develop a web application that uses the ASP.NET AJAX Control Toolkit (<a href="http://www.asp.net/ajax/AjaxControlToolkit/Samples/">http://www.asp.net/ajax/AjaxControlToolkit/Samples</a>), if you plan to deploy this application to a SharePoint Server, you will need to complete the following steps:Copy the AjaxControlToolkit.dll to the BIN folder of the SharePoint server.</p>
<ol>
<li>Copy the AjaxControlToolkit.dll to the BIN folder of the SharePoint server.</li>
<li>Edit the web.config file as below:</li>
</ol>
<pre class="brush: xml;">
&lt;SafeControls&gt;
      &lt;SafeControl Assembly=&quot;System.Web.Extensions, Version=3.5.0.0,     Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;     Namespace=&quot;System.Web.UI&quot; TypeName=&quot;*&quot; Safe=&quot;True&quot; /&gt;
&lt;/SafeControls&gt;

&lt;configSections&gt;
    &lt;sectionGroup name=&quot;system.web.extensions&quot; type=&quot;System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;&gt;
      &lt;sectionGroup name=&quot;scripting&quot; type=&quot;System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;&gt;
          &lt;section name=&quot;scriptResourceHandler&quot; type=&quot;System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; requirePermission=&quot;false&quot; allowDefinition=&quot;MachineToApplication&quot;/&gt;
        &lt;sectionGroup name=&quot;webServices&quot; type=&quot;System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;&gt;
          &lt;section name=&quot;jsonSerialization&quot; type=&quot;System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; requirePermission=&quot;false&quot; allowDefinition=&quot;Everywhere&quot; /&gt;
          &lt;section name=&quot;profileService&quot; type=&quot;System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; requirePermission=&quot;false&quot; allowDefinition=&quot;MachineToApplication&quot; /&gt;
          &lt;section name=&quot;authenticationService&quot; type=&quot;System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; requirePermission=&quot;false&quot; allowDefinition=&quot;MachineToApplication&quot; /&gt;
        &lt;/sectionGroup&gt;
      &lt;/sectionGroup&gt;
    &lt;/sectionGroup&gt;
&lt;/configSections&gt; 

&lt;pages&gt;
  &lt;controls&gt;
    &lt;add tagPrefix=&quot;asp&quot; namespace=&quot;System.Web.UI&quot; assembly=&quot;System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;
  &lt;/controls&gt;
&lt;/pages&gt;

&lt;assemblies&gt;
       &lt;add assembly=&quot;System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;
&lt;/assemblies&gt;

&lt;httpHandlers&gt;
      &lt;add verb=&quot;*&quot; path=&quot;*.asmx&quot; validate=&quot;false&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;
      &lt;add verb=&quot;*&quot; path=&quot;*_AppService.axd&quot; validate=&quot;false&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;
      &lt;add verb=&quot;GET,HEAD&quot; path=&quot;ScriptResource.axd&quot; type=&quot;System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; validate=&quot;false&quot;/&gt;
&lt;/httpHandlers&gt;

&lt;httpModules&gt;
      &lt;add name=&quot;ScriptModule&quot; type=&quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;
&lt;/httpModules&gt;
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint+-+http://b2l.me/kf9nv&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;t=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint&amp;summary=You%20may%20develop%20a%20web%20application%20that%20uses%20the%20ASP.NET%20AJAX%20Control%20Toolkit%20%28http%3A%2F%2Fwww.asp.net%2Fajax%2FAjaxControlToolkit%2FSamples%29%2C%20if%20you%20plan%20to%20deploy%20this%20application%20to%20a%20SharePoint%20Server%2C%20you%20will%20need%20to%20complete%20the%20following%20steps%3ACopy%20the%20AjaxControlToolkit.dll%20to%20the%20BIN%20folder%20of%20the%20Sha&amp;source=redaware" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/&amp;title=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=ASP.NET%3A+Deploying+an+AJAX+enabled+application+to+SharePoint&amp;body=Link: http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20may%20develop%20a%20web%20application%20that%20uses%20the%20ASP.NET%20AJAX%20Control%20Toolkit%20%28http%3A%2F%2Fwww.asp.net%2Fajax%2FAjaxControlToolkit%2FSamples%29%2C%20if%20you%20plan%20to%20deploy%20this%20application%20to%20a%20SharePoint%20Server%2C%20you%20will%20need%20to%20complete%20the%20following%20steps%3ACopy%20the%20AjaxControlToolkit.dll%20to%20the%20BIN%20folder%20of%20the%20Sha" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/08/asp-net-deploying-an-ajax-enabled-application-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
