<?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>Prolific Notion &#187; AJAX</title>
	<atom:link href="http://www.prolificnotion.co.uk/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prolificnotion.co.uk</link>
	<description>Welcome to the miscellaneous mutterings of Simon Dingley, Certified Umbraco Developer</description>
	<lastBuildDate>Sun, 15 Jan 2012 08:06:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>&#8216;Sys&#8217; is Undefined in ASP.NET AJAX</title>
		<link>http://www.prolificnotion.co.uk/sys-is-undefined-in-aspnet-ajax/</link>
		<comments>http://www.prolificnotion.co.uk/sys-is-undefined-in-aspnet-ajax/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 11:11:25 +0000</pubDate>
		<dc:creator>Simon Dingley</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://blog.prolificnotion.co.uk/?p=29</guid>
		<description><![CDATA[
			
				
			
		
A project that I was updating recently didn&#8217;t start out its life as an ASP.NET AJAX enabled application so it was being upgraded to take advantage of some of the features and controls available in the AjaxControlToolkit. I added the necessary references to my project and added the assemblies to the Web.config and things seemed [...]<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.prolificnotion.co.uk/running-umbraco-v4-on-aspnet-35/" rel="bookmark">Running Umbraco v4 on ASP.NET 3.5</a><!-- (5.3)--></li>
	</ol>


Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.prolificnotion.co.uk%2Fsys-is-undefined-in-aspnet-ajax%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.prolificnotion.co.uk%2Fsys-is-undefined-in-aspnet-ajax%2F&amp;style=normal&amp;service=bit.ly&amp;service_api=R_e35365ff035ed93fc3e67e6f868b7be3&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A project that I was updating recently didn&#8217;t start out its life as an <a title="Discover more about ASP.NET AJAX" href="http://www.asp.net/ajax/">ASP.NET AJAX</a> enabled application so it was being upgraded to take advantage of some of the features and controls available in the <a title="Find out more about the AJAX Control Toolkit" href="http://www.asp.net/ajax/ajaxcontroltoolkit/">AjaxControlToolkit</a>. I added the necessary references to my project and added the assemblies to the Web.config and things seemed ok until I got to a page with an <a title="UpdatePanel Control Overview" href="http://www.asp.net/Ajax/Documentation/Live/overview/UpdatePanelOverview.aspx">UpdatePanel</a> on it and the dreaded <strong>&#8216;Sys&#8217; is undefined</strong> error reared its ugly head. After a lot of head scratching and some failed Google-fu I finally manaeged to find a <a href="http://geekswithblogs.net/ranganh/archive/2007/07/15/113963.aspx">post</a> which led me to my answer. I was missing the httpHandlers and httpModules configuration settings in my Web.config which if I had created a new ASP.NET AJAX enabled project from scratch would already have existed, adding them in and the error went away and now my <a title="UpdatePanel Control Overview" href="http://www.asp.net/Ajax/Documentation/Live/overview/UpdatePanelOverview.aspx">UpdatePanel</a> started to work as required.</p>
<p>
<pre class="brush: xml; title: ; notranslate">&lt;httpHandlers&gt;&lt;br /&gt;
  &lt;remove verb=&quot;*&quot; path=&quot;*.asmx&quot;/&gt;&lt;br /&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=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;&lt;br /&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=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;&lt;br /&gt;
  &lt;add verb=&quot;GET,HEAD&quot; path=&quot;ScriptResource.axd&quot; type=&quot;System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; validate=&quot;false&quot;/&gt;&lt;br /&gt;
&lt;/httpHandlers&gt;&lt;/p&gt;
&lt;p&gt;&lt;httpModules&gt;&lt;br /&gt;
  &lt;add name=&quot;ScriptModule&quot; type=&quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;/&gt;&lt;br /&gt;
&lt;/httpModules&gt; </pre></p>
<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.prolificnotion.co.uk/running-umbraco-v4-on-aspnet-35/" rel="bookmark">Running Umbraco v4 on ASP.NET 3.5</a><!-- (5.3)--></li>
	</ol>

<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.prolificnotion.co.uk/sys-is-undefined-in-aspnet-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

