<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for ASP.NET, AJAX, Web Services, Vista, Visual Studio, and everything but personal!</title>
	<atom:link href="http://budigelli.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://budigelli.wordpress.com</link>
	<description>Yet another BLOG on casual stuff...</description>
	<lastBuildDate>Wed, 12 Aug 2009 15:58:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by kevtech</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-142</link>
		<dc:creator>kevtech</dc:creator>
		<pubDate>Wed, 12 Aug 2009 15:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-142</guid>
		<description>just copy the .dll in your bin folder the dll is system.web.extensions.* and after adding the correct reference it works</description>
		<content:encoded><![CDATA[<p>just copy the .dll in your bin folder the dll is system.web.extensions.* and after adding the correct reference it works</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by vitthal</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-141</link>
		<dc:creator>vitthal</dc:creator>
		<pubDate>Tue, 04 Aug 2009 06:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-141</guid>
		<description>I am using IE 8, .Net Framework 2.0 , ASP.NET2.0  Ajax1.0,XP2 for my project.
I have created one custom handler as-


I have done all above ways to solve the issue but it still shows me error &#039;Sys&#039;
is undefined in my javascript file 

_EventPool = function() {
    _EventPool.initializeBase(this);
};
_EventPool.prototype = {
    addEvent: function(name, handler) {
        this.get_events().addHandler(name, handler);
    },
    removeEvent: function(name, handler) {
        this.get_events().removeHandler(name, handler);
    },
    raiseEvent: function(name, source, args) {
        var handler = this.get_events().getHandler(name);
        if (handler) {
            handler(source, args);
        }
    }
};
_EventPool.registerClass(&quot;_EventPool&quot;, Sys.Component);
var $evp = $create(_EventPool, { &quot;id&quot;: &quot;EventPool&quot; }, null, null, null);



so what should i do to avoid this problem please help me.</description>
		<content:encoded><![CDATA[<p>I am using IE 8, .Net Framework 2.0 , ASP.NET2.0  Ajax1.0,XP2 for my project.<br />
I have created one custom handler as-</p>
<p>I have done all above ways to solve the issue but it still shows me error &#8216;Sys&#8217;<br />
is undefined in my javascript file </p>
<p>_EventPool = function() {<br />
    _EventPool.initializeBase(this);<br />
};<br />
_EventPool.prototype = {<br />
    addEvent: function(name, handler) {<br />
        this.get_events().addHandler(name, handler);<br />
    },<br />
    removeEvent: function(name, handler) {<br />
        this.get_events().removeHandler(name, handler);<br />
    },<br />
    raiseEvent: function(name, source, args) {<br />
        var handler = this.get_events().getHandler(name);<br />
        if (handler) {<br />
            handler(source, args);<br />
        }<br />
    }<br />
};<br />
_EventPool.registerClass(&#8220;_EventPool&#8221;, Sys.Component);<br />
var $evp = $create(_EventPool, { &#8220;id&#8221;: &#8220;EventPool&#8221; }, null, null, null);</p>
<p>so what should i do to avoid this problem please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by Vitthal</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-138</link>
		<dc:creator>Vitthal</dc:creator>
		<pubDate>Mon, 03 Aug 2009 12:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-138</guid>
		<description>I am using IE 8, .Net Framework 2.0 , Ajax , VSTS 2008 for my project.
I have created one custom handler as,


i have created &quot;OutOfBandSessionValidator.vb&quot; too as

Imports System.Web
Imports System.Web.SessionState
Namespace CustomHandler
    Public Class OutOfBandSessionValidator
        Implements IHttpHandler
        Implements IRequiresSessionState
        Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
            Get
                Return False
            End Get
        End Property

        Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest

        End Sub
    End Class
End Namespace

i have also installed  &quot;ASPNETAJAXVS2008&quot; but it still shows me the error
&quot;sys&quot; is undefined.
i tried all above ways to solve the problem but the issue still persists.
Please help me.

I stuck here since last one week.
Help will be greatly appreciated.
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I am using IE 8, .Net Framework 2.0 , Ajax , VSTS 2008 for my project.<br />
I have created one custom handler as,</p>
<p>i have created &#8220;OutOfBandSessionValidator.vb&#8221; too as</p>
<p>Imports System.Web<br />
Imports System.Web.SessionState<br />
Namespace CustomHandler<br />
    Public Class OutOfBandSessionValidator<br />
        Implements IHttpHandler<br />
        Implements IRequiresSessionState<br />
        Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable<br />
            Get<br />
                Return False<br />
            End Get<br />
        End Property</p>
<p>        Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest</p>
<p>        End Sub<br />
    End Class<br />
End Namespace</p>
<p>i have also installed  &#8220;ASPNETAJAXVS2008&#8243; but it still shows me the error<br />
&#8220;sys&#8221; is undefined.<br />
i tried all above ways to solve the problem but the issue still persists.<br />
Please help me.</p>
<p>I stuck here since last one week.<br />
Help will be greatly appreciated.<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by Nitesh Shah</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-136</link>
		<dc:creator>Nitesh Shah</dc:creator>
		<pubDate>Thu, 18 Jun 2009 07:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-136</guid>
		<description>A customer was facing the similar problem and the cause was the web.config file was in the sub-directory in which he had the asp.net application and the directory was not a web application. Converting it into a virtual directory resolved the problem as the application was now referencing the web.config placed in the directory and not trying to find a web.config file in the parent directory of the website which did not exist at all. Hope it is useful for all.</description>
		<content:encoded><![CDATA[<p>A customer was facing the similar problem and the cause was the web.config file was in the sub-directory in which he had the asp.net application and the directory was not a web application. Converting it into a virtual directory resolved the problem as the application was now referencing the web.config placed in the directory and not trying to find a web.config file in the parent directory of the website which did not exist at all. Hope it is useful for all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET Url Re-writing and Postback Problem Solution by mani</title>
		<link>http://budigelli.wordpress.com/2007/06/14/aspnet-url-re-writing-and-postback-problem-solution/#comment-133</link>
		<dc:creator>mani</dc:creator>
		<pubDate>Thu, 14 May 2009 12:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/06/14/aspnet-url-re-writing-and-postback-problem-solution/#comment-133</guid>
		<description>hi .. i have implemented URL Rewriting concept , i have checked your comment on Scott Blog, i am using asp.net 2.0 and we upload one project to server ie we are using IIS 6.0 so i have learned scott article , mentioning , we can use extionless - URL rewriting if we use IIS 6.0 for that we have to us ISAPI Rewrite.. but for we dont have nay contact with client , ie Client having IIS server so how to include that ISAPI Rewrite url there. even i do no how to write it through ISAPI .. ie Extension Less URL Rewriting.. pls help me thanks</description>
		<content:encoded><![CDATA[<p>hi .. i have implemented URL Rewriting concept , i have checked your comment on Scott Blog, i am using asp.net 2.0 and we upload one project to server ie we are using IIS 6.0 so i have learned scott article , mentioning , we can use extionless &#8211; URL rewriting if we use IIS 6.0 for that we have to us ISAPI Rewrite.. but for we dont have nay contact with client , ie Client having IIS server so how to include that ISAPI Rewrite url there. even i do no how to write it through ISAPI .. ie Extension Less URL Rewriting.. pls help me thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My new Vista does not connect to Internet by Vince Delmonte</title>
		<link>http://budigelli.wordpress.com/2007/04/23/my-new-vista-does-not-connect-to-internet/#comment-132</link>
		<dc:creator>Vince Delmonte</dc:creator>
		<pubDate>Tue, 14 Apr 2009 20:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/04/23/my-new-vista-does-not-connect-to-internet/#comment-132</guid>
		<description>Not that I&#039;m impressed a lot, but this is   more than I expected for when I found a link on Digg telling that the info   is awesome. Thanks.</description>
		<content:encoded><![CDATA[<p>Not that I&#8217;m impressed a lot, but this is   more than I expected for when I found a link on Digg telling that the info   is awesome. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by CMS</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-129</link>
		<dc:creator>CMS</dc:creator>
		<pubDate>Thu, 26 Mar 2009 12:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-129</guid>
		<description>I was able to resolve it this way:
AJAX, .NET 2.0 &#039;Sys&#039; is undefined and RewritePath
http://www.aspnetportal.org/Content.aspx?ContentId=613</description>
		<content:encoded><![CDATA[<p>I was able to resolve it this way:<br />
AJAX, .NET 2.0 &#8216;Sys&#8217; is undefined and RewritePath<br />
<a href="http://www.aspnetportal.org/Content.aspx?ContentId=613" rel="nofollow">http://www.aspnetportal.org/Content.aspx?ContentId=613</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AJAX UpdatePanel Causes Postback by Jeezz</title>
		<link>http://budigelli.wordpress.com/2007/06/16/ajax-updatepanel-causes-postback/#comment-128</link>
		<dc:creator>Jeezz</dc:creator>
		<pubDate>Tue, 24 Mar 2009 14:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/06/16/ajax-updatepanel-causes-postback/#comment-128</guid>
		<description>Well, where is the &quot;more information&quot; ??</description>
		<content:encoded><![CDATA[<p>Well, where is the &#8220;more information&#8221; ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by Angelo</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-126</link>
		<dc:creator>Angelo</dc:creator>
		<pubDate>Wed, 04 Mar 2009 23:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-126</guid>
		<description>Fix:

On the top of ASPX page add register:(sorry couldn&#039;t add the less than and greater than symbol as the post is not accepting it so typing [ ] symbols instead.)

[%@ Register Assembly=&quot;System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot;
    Namespace=&quot;System.Web.UI&quot; TagPrefix=&quot;asp&quot; %]

(this will automatically be added once you drag and drop the &quot;UpdatePanel&quot;.)
drag and drop &quot;ScriptManager&quot; below the &quot;form&quot; tag and make sure above other ajax controls and the respective javascript.

Now, in the web.config add between [system.web] tags:

[httpHandlers]
      [add verb=&quot;GET&quot; path=&quot;ScriptResource.axd&quot; type=&quot;System.Web.Handlers.ScriptResourceHandler&quot; validate=&quot;false&quot;/ ]
    [ /httpHandlers]

(Usually the problem occurs here in the httpHandlers, as many use &quot;Microsoft&quot; instead of &quot;System&quot;.

~Cheers.

Angelo</description>
		<content:encoded><![CDATA[<p>Fix:</p>
<p>On the top of ASPX page add register:(sorry couldn&#8217;t add the less than and greater than symbol as the post is not accepting it so typing [ ] symbols instead.)</p>
<p>[%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"<br />
    Namespace="System.Web.UI" TagPrefix="asp" %]</p>
<p>(this will automatically be added once you drag and drop the &#8220;UpdatePanel&#8221;.)<br />
drag and drop &#8220;ScriptManager&#8221; below the &#8220;form&#8221; tag and make sure above other ajax controls and the respective javascript.</p>
<p>Now, in the web.config add between [system.web] tags:</p>
<p>[httpHandlers]<br />
      [add verb="GET" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler" validate="false"/ ]<br />
    [ /httpHandlers]</p>
<p>(Usually the problem occurs here in the httpHandlers, as many use &#8220;Microsoft&#8221; instead of &#8220;System&#8221;.</p>
<p>~Cheers.</p>
<p>Angelo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: &quot;Sys&quot; is Undefined error by Angelo</title>
		<link>http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-125</link>
		<dc:creator>Angelo</dc:creator>
		<pubDate>Wed, 04 Mar 2009 23:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://budigelli.wordpress.com/2007/05/01/error-sys-is-undefined-error/#comment-125</guid>
		<description>Fix:

On the top of ASPX page type:



(this will automatically be added once you drag and drop the &quot;UpdatePanel&quot;.)
drag and drop &quot;ScriptManager&quot; below the  tag and make sure above other ajax controls and the respective javascript.

Now, in the web.config add between  tags:


      
    

(Usually the problem occurs here in the httpHandlers, as many use &quot;Microsoft&quot; instead of &quot;System&quot;.

~Cheers.

Angelo</description>
		<content:encoded><![CDATA[<p>Fix:</p>
<p>On the top of ASPX page type:</p>
<p>(this will automatically be added once you drag and drop the &#8220;UpdatePanel&#8221;.)<br />
drag and drop &#8220;ScriptManager&#8221; below the  tag and make sure above other ajax controls and the respective javascript.</p>
<p>Now, in the web.config add between  tags:</p>
<p>(Usually the problem occurs here in the httpHandlers, as many use &#8220;Microsoft&#8221; instead of &#8220;System&#8221;.</p>
<p>~Cheers.</p>
<p>Angelo</p>
]]></content:encoded>
	</item>
</channel>
</rss>
